onSuccess

onSuccess — a virtual method invoked on receipt of a success message.

Syntax

For C++:

virtual void onSuccess(LPCTSTR  cmd,
 LPCTSTR  parms);

For Java and C#:

virtual void onSuccess(String  cmd,
 String  parms);

Parameters

cmd
The original command sent to the DataHub to which this reply corresponds.
parms
The list of parameters sent as part of the command, as a single space-separated string, or NULL[6] if none are returned. If the command involved multiple parameters, the list may be truncated.

Description

This virtual method is invoked on receipt of a success message.

See Also

onStatusChange, onAsyncMessage, onError, onConnectionSuccess, onConnectionFailure



[6] null in Java and C#.