public method IO2GRequestFactory.createRefreshTableRequestByAccount

Brief

Creates a request for a table containing data about one account. It is usually used to request data about Orders table on an account from the server.

Declaration
C++
virtual IO2GRequest createRefreshTableRequestByAccount (O2GTable table, const char * account) = 0

Parameters
table

The identifier of the table.

account

The identifier of the account.

Details

The response type for Orders table would be GetOrders; use IO2GOrdersTableResponseReader to parse the GetOrders response.

In response to the request, the table snapshot will be sent and then TablesUpdates messages will be sent each time when the table data is changed on the server.

Declared in IO2GRequestFactory

back