processCustomMessage Member Function

When a connected Manager sends a Custom Message to the Listener, the Manager will inform the application of this 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 should consist of UTF-8 or Unicode characters, which may contain any printable characters excluding the newline character.
Example
PCHcallable PCHLibrary;
...
PCHLibrary.processCustomMessage("This is a Custom Message.");
...
See Also
PCHcallable Class
Listener Class