ix.util
Interface IPC.SocketlikeCommunicationStrategy

All Superinterfaces:
IPC.CommunicationStrategy
Enclosing class:
IPC

public static interface IPC.SocketlikeCommunicationStrategy
extends IPC.CommunicationStrategy

A CommunicationStrategy that provides "connections" analogous to sockets and a visible mapping from destination names to the data needed to establish a connection.


Method Summary
 IPC.Connection connectTo(java.lang.Object destination)
           
 IPC.Connection getConnection(java.lang.Object destination)
           
 java.lang.Object getDestinationData(java.lang.Object destination)
           
 void setDestinationData(java.lang.Object destination, java.lang.Object data)
           
 
Methods inherited from interface ix.util.IPC.CommunicationStrategy
sendObject, setupServer
 

Method Detail

getDestinationData

java.lang.Object getDestinationData(java.lang.Object destination)

setDestinationData

void setDestinationData(java.lang.Object destination,
                        java.lang.Object data)

connectTo

IPC.Connection connectTo(java.lang.Object destination)

getConnection

IPC.Connection getConnection(java.lang.Object destination)