processCustomMessage Member Function
When a connected Manager sends a Custom Message to the Listener, the Manager informs the application by calling processCustomMessage from an independent thread. For more information about the processing of Custom Messages, see Supporting Communication from Managers: Processing Custom Messages.
Syntax
void processCustomMessage(const char *message);
void processCustomMessage(const wchar_t *message);
Parameters
- message
- [in] Required pointer to a string, which provides the text of the Custom Message. The string consists of UTF-8 or Unicode characters, which can contain any printable characters, excluding the newline character.
Example
PCHcallable PCHLibrary;
...
PCHLibrary.processCustomMessage("This is a Custom Message.");
...