public method O2GAccountsTableResponseReader.getGenericRow

Brief

Gets a row by its index.

Declaration
Java
O2GRow  getGenericRow (int iRow)

Parameters
iRow

The index of a row. The index must be between 0 and O2GGenericTableResponseReader.size() - 1.

Details

The method is used to work with an abstract row. The method provides common access to rows in a reader/table independently of a reader/table type. The method can be used for processing table updates in the non-table manager mode or working with tables in the table manager mode.


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.

Declared in O2GGenericTableResponseReader

back