MsgCommunicator: Delphi Instant Messaging (IM) SDK
for easy creation of custom messenger system
Occurs when the client receives a custom message from server.
type TMsgOnClientReceiveStreamMessage = procedure (const FromUserID: Cardinal; Stream: TStream) of object;
property OnReceiveStreamMessage: TMsgOnClientReceiveStreamMessage;
Description
OnReceiveStreamMessage occurs when the client receives a custom stream message.
UserID is an identifier of the sender.
You can send message to client using SendMessage method.
|