All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface jdce.client.clientProxy

public interface clientProxy
extends Object

Method Index

 o clientEvent(jdceEvent)
clientEvent is called when a client change has been observed.
 o dataReceive(String)
dataReceive is called when data is received for this client on the given coordinator.
 o messageReceive(jdceMessage)

Methods

 o clientEvent
 public abstract boolean clientEvent(jdceEvent evt)
clientEvent is called when a client change has been observed. There are three types of client changes: - a client has joined the dataBahn. - a client has left the dataBahn. - a client has been expelled by the creator of the bahn.

Parameters:
event - the channel changed event containing more information on exactly what has changed. This method could look something like:
 o dataReceive
 public abstract boolean dataReceive(String Message)
dataReceive is called when data is received for this client on the given coordinator. The data object received is to a copy of the client data which this consumer can do with as they require.

Parameters:
Message - the data which can be of unlimited size.
 o messageReceive
 public abstract boolean messageReceive(jdceMessage Message)

All Packages  Class Hierarchy  This Package  Previous  Next  Index