#include <messagereceiverregistry.h>
IMessageReceiver defines an interface for objects that are called to process blobs of data sent through VisualDebug.
Inherited by Kaim::LogUnhandledMsgReceiver.
Public Member Functions | |
virtual void | Receive (Ptr< Net::AMP::Message > message, const char *ptrToBlob, KyUInt32 blobSize)=0 |
This method is called to process each blob that has been successfully received. More... | |
|
pure virtual |
This method is called to process each blob that has been successfully received.
Your implementation should store message and ptrToBlob all together in order to keep ptrToBlob valid.
message | The message received which maintains the memory that ptrToBlob points to. |
ptrToBlob | The received blob pointing into the memory of the message, it will remain valid as long as message is valid. |
blobSize | The size of the blob. |