xflminterface IF_CommitClient : public XF_RefCount
This class represents the commit client interface. It extends XF_RefCount. XFLAIM does not provide an implementation of this interface. It must be implemented by the application. It allows an application to perform any special processing after a transaction has successfully committed, but before the database lock is released.
This object is set inside an IF_Db object by calling the IF_Db::setIndexingStatusObject method.
Method Summary |
|
void |
commit - Called when a transaction is committed. |
Method Detail |
void commit(
IF_Db * pDb)
Called when a transaction is committed. Allows the application to perform application-specific processing after the transaction has successfully committed, but before the database lock is released.
Parameters In:
IF_Db * pDb
The database that is performing the commit.
Parameters Out: none.
See Also: