processCustomMessage Method

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(String message);
Parameters
message - [in] Required String, which provides the text of the Custom Message. The string may be passed as Unicode that contains any printable characters excluding the newline character.
Example
PCHcallable PCHLibrary = new defaultCallable();
...
PCHLibrary.processCustomMessage("This is a Custom Message.");
...
See Also
PCHcallable Interface
Listener Class