xflminterface IF_ResultSetSortStatus : public XF_RefCount
This class represents the result set sort status interface. It extends XF_RefCount. XFLAIM does not provide an implementation of this interface. This interface must be implemented by the application. It allows an application to receive progress reports during the sorting of a result set. It is called by XFLAIM from within IF_ResultSet::finalizeResultSet.
Method Summary |
|
RCODE |
reportSortStatus - Reports how much of the result set has been sorted. |
Method Detail |
RCODE reportSortStatus(
FLMUINT64 ui64EstTotalUnits
FLMUINT64 ui64UnitsDone);
Reports how much of the result set has been sorted. An application may abort the sorting of the result set by returning a non-zero RCODE.
Parameters In:
FLMUINT64 ui64EstTotalUnits Total units that need to be sorted. NOTE: This is NOT the total number of entries in the result set. It is a generic number meant to convey the total sorting work that needs to be done. FLMUINT64 ui64UnitsDone Total units that have been sorted so far.