Uses of Interface
ix.util.IPC.CommunicationStrategy

Packages that use IPC.CommunicationStrategy
ix.util General-purpose utilities. 
 

Uses of IPC.CommunicationStrategy in ix.util
 

Subinterfaces of IPC.CommunicationStrategy in ix.util
static interface IPC.SocketlikeCommunicationStrategy
          A CommunicationStrategy that provides "connections" analogous to sockets and a visible mapping from destination names to the data needed to establish a connection.
 

Classes in ix.util that implement IPC.CommunicationStrategy
static class IPC.ObjectStreamCommunicationStrategy
          A communication strategy in which a destination is mapped to a host and port number, and objects are sent by writing their serialization to a socket.
static class IPC.SimpleIXCommunicationStrategy
          An ObjectStream communication strategy that provides default host and port assignments for standard I-X agents.
static class IPC.SimpleIXXMLCommunicationStrategy
          An ObjectStream communication strategy that provides default host and port assignments for standard I-X agents and encodes the message contents in XML rather than serializing.
static class IPC.XMLObjectStreamCommunicationStrategy
          A version of ObjectStreamCommunicationStrategy that encodes the message contents in XML rather than serializing.
 

Fields in ix.util declared as IPC.CommunicationStrategy
(package private) static IPC.CommunicationStrategy IPC.defaultCommunicationStrategy
          The communication strategy used by the static methods of this class that do not have a communication strategy as a parameter.
 

Methods in ix.util that return IPC.CommunicationStrategy
static IPC.CommunicationStrategy IPC.getCommunicationStrategy(java.lang.String strategyName)
          Returns a CommunicationStrategy based on a name that is either a special abbreviation or the name of a class.
 

Methods in ix.util with parameters of type IPC.CommunicationStrategy
static void IPC.setDefaultCommunicationStrategy(IPC.CommunicationStrategy s)
          Sets the communication strategy used when none is explicitly specified.