ServerChannelProcessReply Method |
Called when an asynchronous transaction reply message is received from
OBCOM NetServer.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntaxpublic virtual void ProcessReply(
int sequence,
Message message,
Object context
)
Public Overridable Sub ProcessReply (
sequence As Integer,
message As Message,
context As Object
)
Parameters
- sequence
- Type: SystemInt32
The sequence of the reply message.
- message
- Type: OBCOM.NetClientMessage
The data of the reply message.
- context
- Type: SystemObject
The user-defined context information of this message.
RemarksAn asynchronous reply message is received for every asynchronous
transaction request sent using the SendRequest(String, Object) method. Normally, though, transaction request are
synchronous, in which the server process is blocked until the reply
message is received.
This method is meant to be overriden by classes that extend
ServerChannel. This default implementation simply ignores the
asynchronous reply message.
See Also