public method IO2GTableListener.onStatusChanged

Brief

Processes notifications about a table status changes.

Declaration
C#
void  onStatusChanged (O2GTableStatus status)

Parameters
status

The new table status.

Details

To catch this event IO2GTableListener must be subscribed by O2GTable.subscribeStatus.

To get notifications about status changes of a specific table, an instance of the class implementing the IO2GTableListener interface must be subscribed to the status changes of this table. It is accomplished by calling the O2GTable.subscribeStatus method. For example, if you want to get notifications about status changes of the Trades table, write the following line:

tradesTable.subscribeStatus(tableListener);

Declared in IO2GTableListener

back