public method O2GOrdersTable.getNextRow

Brief

Gets the next row from the O2GOrdersTable.

Declaration
Java
O2GOrderTableRow  getNextRow (O2GTableIterator iterator)

Parameters
iterator

The table iterator.

Details

If the row is not found, the method returns null.
Note: The returned row contains the current values of fields. The values are not automatically updated. To monitor changes, use IO2GTableListener.onChanged. The row interface is thread-safe. One can use the returned row in different threads without synchronization.

Example

Get next row from the Orders table [hide]

    O2GOrdersTable ordersTable = (O2GOrdersTable)tableManager.getTable(O2GTableType.ORDERS);
    O2GTableIterator iterator = new O2GTableIterator();
    O2GOrderTableRow order = ordersTable.getNextRow(iterator);
    while (order != null) {
        System.out.println("OrderID: " + order.getOrderID() +
                           " Amount = " + order.getAmount() +
                           " BuySell = " + order.getBuySell());
        order = ordersTable.getNextRow(iterator);
    }

Declared in O2GOrdersTable

back