All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface ncsa.hdf.message.Messageable

public interface Messageable
Messagable is an interface to be implemented by HDF objects. This interface defines a protocol for bidirectional communication between HDF java server and HDF java client.


Method Index

 o fromClient(HDFMessage)
process the message received from the client
 o fromServer(HDFMessage)
process the message received from the server
 o isMe(HDFMessage)
check if the object is me
 o service()
serve the client request on the server
 o toClient()
create a message for sending to the client
 o toServer()
create a message for sending to the server

Methods

 o isMe
 public abstract boolean isMe(HDFMessage message)
check if the object is me

 o toServer
 public abstract HDFMessage toServer()
create a message for sending to the server

 o toClient
 public abstract HDFMessage toClient()
create a message for sending to the client

 o fromServer
 public abstract void fromServer(HDFMessage message)
process the message received from the server

 o fromClient
 public abstract void fromClient(HDFMessage message)
process the message received from the client

 o service
 public abstract void service()
serve the client request on the server


All Packages  Class Hierarchy  This Package  Previous  Next  Index