Uses of Interface
org.jppf.utils.ObjectSerializer

Packages that use ObjectSerializer
org.jppf.classloader Support for socket-based communication with remote services. 
org.jppf.comm.socket Support for network communications. 
org.jppf.gigaspaces.serialization Classes supporting the GigaSpaces connector sample. 
org.jppf.io Support for transport-agnostic communication with remote services and disk overflow. 
org.jppf.node Support for node life cycle events. 
org.jppf.server.node Classes supporting the server node-side of the JPPF asynchronous comunication model. 
org.jppf.utils Utility and helper classes used throughout the JPPF code. 
 

Uses of ObjectSerializer in org.jppf.classloader
 

Fields in org.jppf.classloader declared as ObjectSerializer
protected  ObjectSerializer JPPFClassLoader.ResourceRequest.serializer
          The object serializer to use.
protected  ObjectSerializer AbstractJPPFClassLoaderLifeCycle.serializer
          The object used to serialize and deserialize resources.
 

Methods in org.jppf.classloader that return ObjectSerializer
protected  ObjectSerializer AbstractJPPFClassLoaderLifeCycle.getSerializer()
          Get the object used to serialize and deserialize resources.
 

Uses of ObjectSerializer in org.jppf.comm.socket
 

Classes in org.jppf.comm.socket that implement ObjectSerializer
 class BootstrapObjectSerializer
          This serializer is used solely by the nodes to enable their bootstrapping.
 

Fields in org.jppf.comm.socket declared as ObjectSerializer
protected  ObjectSerializer AbstractSocketWrapper.serializer
          Used to serialize or deserialize an object into or from an array of bytes.
 

Methods in org.jppf.comm.socket that return ObjectSerializer
 ObjectSerializer SocketWrapper.getSerializer()
          Get an object serializer / deserializer to convert an object to or from an array of bytes.
 ObjectSerializer BootstrapSocketClient.getSerializer()
          Get the object serializer for this socket connection.
 ObjectSerializer AbstractSocketWrapper.getSerializer()
          This implementation does nothing.
 ObjectSerializer SocketClient.getSerializer()
          Get an object serializer / deserializer to convert an object to or from an array of bytes.
 ObjectSerializer SocketChannelClient.getSerializer()
          Get an object serializer / deserializer to convert an object to or from an array of bytes.
 

Methods in org.jppf.comm.socket with parameters of type ObjectSerializer
 void SocketWrapper.setSerializer(ObjectSerializer serializer)
          Set the object serializer / deserializer to convert an object to or from an array of bytes.
 void AbstractSocketWrapper.setSerializer(ObjectSerializer serializer)
          This implementation does nothing.
 void SocketClient.setSerializer(ObjectSerializer serializer)
          Set the object serializer / deserializer to convert an object to or from an array of bytes.
 void SocketChannelClient.setSerializer(ObjectSerializer serializer)
          Set the object serializer / deserializer to convert an object to or from an array of bytes.
 

Constructors in org.jppf.comm.socket with parameters of type ObjectSerializer
AbstractSocketWrapper(String host, int port, ObjectSerializer serializer)
          Initialize this socket client and connect it to the specified host on the specified port.
SocketClient(String host, int port, ObjectSerializer serializer)
          Initialize this socket client and connect it to the specified host on the specified port.
 

Uses of ObjectSerializer in org.jppf.gigaspaces.serialization
 

Classes in org.jppf.gigaspaces.serialization that implement ObjectSerializer
 class GSObjectSerializer
          Object serializer used for GS client bootstrapping.
 

Methods in org.jppf.gigaspaces.serialization that return ObjectSerializer
 ObjectSerializer GSSerializationHelper.getSerializer()
          Get the object serializer for this helper.
 

Uses of ObjectSerializer in org.jppf.io
 

Methods in org.jppf.io with parameters of type ObjectSerializer
static void IOHelper.sendData(SocketWrapper socketWrapper, Object o, ObjectSerializer ser)
          Serialize an object and send it to the server.
static DataLocation IOHelper.serializeData(Object o, ObjectSerializer ser)
          Serialize an object and send it to the server.
static DataLocation IOHelper.serializeDataToFile(Object o, ObjectSerializer ser)
          Serialize an object and send it to the server.
static DataLocation IOHelper.serializeDataToMemory(Object o, ObjectSerializer ser)
          Serialize an object to a bugffer in memory.
static Object IOHelper.unwrappedData(DataLocation dl, ObjectSerializer ser)
          Deserialize the specified data into an object.
static Object IOHelper.unwrappedData(SocketWrapper socketWrapper, ObjectSerializer ser)
          Deserialize the next object available via a network connection.
 

Uses of ObjectSerializer in org.jppf.node
 

Fields in org.jppf.node declared as ObjectSerializer
protected  ObjectSerializer AbstractMonitoredNode.serializer
          Utility for deserialization and serialization.
 

Uses of ObjectSerializer in org.jppf.server.node
 

Fields in org.jppf.server.node declared as ObjectSerializer
protected  ObjectSerializer AbstractNodeIO.serializer
          Used to serialize/deserialize tasks and data providers.
 

Uses of ObjectSerializer in org.jppf.utils
 

Classes in org.jppf.utils that implement ObjectSerializer
 class ObjectSerializerImpl
          Instances of this class are used to serialize or deserialize objects to or from an array of bytes.
 

Fields in org.jppf.utils declared as ObjectSerializer
protected  ObjectSerializer SerializationHelperImpl.serializer
          Used to serialize and deserialize objects to and from object streams.
 

Methods in org.jppf.utils that return ObjectSerializer
 ObjectSerializer SerializationHelper.getSerializer()
          Get a reference to the ObjectSerializer used by this helper.
 ObjectSerializer SerializationHelperImpl.getSerializer()
          Get the object serializer for this helper.
 



Copyright © 2005-2010 JPPF Team.