Serial Framework C++ Edition

◆ Post()

int Post ( CwclMessage *const  Message,
const bool  Sync = false 
)

Posts the message into the messages queue.

Parameters
MessageThe CwclMessage object represents a message. A caller is responsible to dispose the message object passed into the method.
SyncI f the Sync parameter set to true and the thread that called the method is the same that opened the receiver the message will be delivered without putting it into the message queue. If the thread that posting the message is different than one that opened the receiver or the Sync parameter is false (the default value) the message will be posted into the message queue.
Returns
If the function succeed the return value is WCL_E_SUCCESS. Otherwise the method returns one of the WCL error codes.

The method can be called from any thread.

Note that if sync messages is posted it can be processed before any other message in the queue.