MessageQueue :: HandleMessage

01 IMessageListener implementation; Adds the message at the end of the queue.
02

[C++] virtual void HandleMessage(Message *pMsg);
[C#] void HandleMessage(Message msg);

03 Parameters:
  • pMsg / msg: The message that will be added.
04 This method adds the message at the end of the queue (thread safe) and signals its presence.
05 Reference: net::semys
Implementation: Semys Architecture
See Also: Message Sub-System, MessageQueue, WaitForMessage()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.