xflminterface IF_BackupClient : public XF_RefCount


This interface represents the  backup client interface. It extends XF_RefCount. XFLAIM does not provide an implementation of this interface. It exists to allow XFLAIM to pass backup data back to the client during a backup.  Interfaces ending in Client exist to allow the client to modify the data or take other action.  In the case of the IF_BackupClient, the client is expected to write the data out to some form of permanent storage, either tape or disk etc. when the WriteData method is invoked.


Method Summary

RCODE  

 WriteData - Method to pass backup data to the client.

 

Method Detail

WriteData

    RCODE WriteData (

        void *               pvBuffer,

        FLMUINT       uiBytesToWrite);

Method to pass backup data to the client.

    Parameters In:

void * pvBuffer Buffer of backup data to be stored by the client.
FLMUINT uiBytesToWrite The number of bytes in the buffer to be stored.

    Parameters Out: none.

    See Also:

[Back to Top]