IConnectionpublic interface IConnection Represents a connection which can transfer objects through some communications channel.
Also supports closing the communications channel. Opening the
channel is specific enough to be left to implementors. |
Methods Summary |
---|
public void | close()Closes the connection.
| public java.lang.Object | receive()Read an incoming Object.
| public void | send(java.io.Serializable object)Write an object to the connection
|
|