Name

CustomMarshal

Synopsis

An interface that must be implemented (indirectly) by all custom value types, by providing implementations of the marshal and unmarshal methods that will be used by the ORB during remote operations using the custom value type.

public interface CustomMarshal {
// Public Instance Methods
   public abstract void marshal(
        org.omg.CORBA.DataOutputStream os);  
   public abstract void unmarshal(
        org.omg.CORBA.DataInputStream is);  
}

Implementations

org.omg.CORBA.portable.CustomValue

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.