[This is preliminary documentation and is subject to change.]
Called when a message has been received by the framework and successfully
dispatched to the Adk's message handlers. If a message is received but
not processed by a message handler -- either because of an error or
because there is no Publisher, Subscriber, or QueryResults
message handler to handle it -- this method is never called.
| C# | Visual Basic | Visual C++ |
void OnMessageProcessed( SifMessageType messageType, IMessageInfo info )
Sub OnMessageProcessed ( _ messageType As SifMessageType, _ info As IMessageInfo _ )
void OnMessageProcessed ( SifMessageType messageType, IMessageInfo^ info )
- messageType (SifMessageType)
- A message type constant (e.g.
CopyC#)SIFMessagingListener.SIF_EVENT
- info (IMessageInfo)
- The MessageInfo instance associated with the message
| Exception | Condition |
|---|---|
| AdkException | AdkException An AdkException may be thrown by this method
to return an error acknowledgement to the server
|