public interface IRpcBrokerEventHandler
Modifier and Type | Method and Description |
---|---|
void |
onRpcBrokerConnect()
Occurs just after the connection to the server is opened.
|
void |
onRpcBrokerCreateContext(java.lang.String context)
Occurs when the broker context has been successfulloy created.
|
void |
onRpcBrokerDisconnect()
Occurs just after the connection to the server is closed.
|
void |
onRpcBrokerError(BrokerException be)
Occurs when the socket fails in making, using, or shutting down a connection.
|
void |
onRpcBrokerReceive(char[] data)
Occurs after a socket receives data, but before it passes the data to the application.
|
void |
onRpcBrokerSend(char[] data)
Occurs just before the client socket writes information to the socket connection.
|
void |
onRpcBrokerSignon(java.lang.String duz)
Occurs when the client has successfully signed the user on to the broker server.
|
void onRpcBrokerConnect()
void onRpcBrokerDisconnect()
void onRpcBrokerSend(char[] data)
data
- the data to be sent to the server.void onRpcBrokerReceive(char[] data)
data
- the data received from the server.void onRpcBrokerError(BrokerException be)
BrokerException
- the broker exception that was thrown.void onRpcBrokerCreateContext(java.lang.String context)
context
- the broker context that was created.void onRpcBrokerSignon(java.lang.String duz)