onAsyncMessage

onAsyncMessage — a virtual method invoked on receipt of a DataHub message.

Synopsis

For C++:
virtual void onAsyncMessage(argc,  
 argv); 
int argc;
char** argv;
 
For Java and C#:
virtual void onAsyncMessage(arguments); 
String[] arguments;
 

Parameters

argc

The number of parameters in the DataHub message.

argv, arguments

An array of strings which are the parameters in the DataHub message.

Description

This virtual method is invoked on receipt of a DataHub message. This method is only called if none of the other callbacks are called.

See Also

onStatusChange, onSuccess, onError, onConnectionSuccess, onConnectionFailure