Package com.db4o.messaging
Interface MessageRecipient
-
public interface MessageRecipient
message recipient for client/server messaging.
db4o allows using the client/server TCP connection to send messages from the client to the server. Any object that can be stored to a db4o database file may be used as a message.
For an example see Reference documentation:
http://developer.db4o.com/Resources/view.aspx/Reference/Client-Server/Messaging
http://developer.db4o.com/Resources/view.aspx/Reference/Client-Server/Remote_Code_Execution
See Also:
ClientServerConfiguration.setMessageRecipient(MessageRecipient)
,
MessageSender
,
ClientServerConfiguration.getMessageSender()
,
MessageRecipientWithContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processMessage(MessageContext context, java.lang.Object message)
the method called upon the arrival of messages.
-
-
-
Method Detail
-
processMessage
void processMessage(MessageContext context, java.lang.Object message)
the method called upon the arrival of messages.- Parameters:
context
- contextual information for the message.message
- the message received.
-
-