recordCustomMessage Member Function
Creates a Custom Message for the Listener to send to all connected Managers.
Syntax
void recordCustomMessage(const char *message);
void recordCustomMessage(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
Listener *listener = new Listener("sampleApp", "4.0", NULL, false);
listener->recordCustomMessage("This is a Custom Message.");
...