public method IO2GTableListener.onStatusChanged

Brief

Processes notifications about a table status changes.

Declaration
C++
virtual void  onStatusChanged (O2GTableStatus status) = 0

Parameters
status

The new table status.

Details

To catch this event IO2GTableListener must be subscribed by IO2GTable::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 IO2GTable.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