xflminterface IF_IxStatus : public XF_RefCount


This class represents the database indexing status interface. It extends XF_RefCount.  XFLAIM does not provide an implementation of this interface.  It must be implemented by an application.  It allows an application to be informed of the progress of creating a new index in the foreground.  Whenever an index is created in the foreground, XFLAIM will traverse the collection's documents and index them.  If an IF_IxStatus object has been set, XFLAIM will call it whenever it finishes indexing a document to report the document ID of the most recently indexed document.  Note that the IF_IxStatus object is NOT used during background indexing.

This object is set inside an IF_Db object by calling the IF_Db::setIndexingStatusObject method.


Method Summary

RCODE  reportIndex - Informs the application of the document ID of the most recently added document.

 

Method Detail

reportIndex

    RCODE reportIndex(

        FLMUINT64    ui64LastDocumentId);

Informs the application of the document ID of the most recently indexed document.

    Parameters In: 

FLMUINT64 ui64LastDocumentId

Document ID.

    Parameters Out: none

    See Also:

[Back to Top]