public method O2GRequestFactory.createRefreshTableRequestByAccount

Brief

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

Declaration
Java
O2GRequest  createRefreshTableRequestByAccount (O2GTableType table, String account)

Parameters
table

The identifier of the table.

account

The identifier of the account.

Details

The response type for ORDERS table would be GET_ORDERS; use O2GOrdersTableResponseReader to parse the GET_ORDERS response.

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

Declared in O2GRequestFactory

back