Foxit PDF SDK
com.foxit.sdk.common.NotifierCallback Class Reference

Public Member Functions

void onOutOfMemory ()
 A callback function used to notify application when Foxit PDF SDK runs out of memory. More...
 
void release ()
 A callback function used to release current callback object itself. More...
 

Detailed Description

This class represents a callback object to notify the Foxit PDF SDK events. All the pure virtual functions in this class are used as callback functions and should be implemented by user. An implemented NotifierCallback object can be set to Foxit PDF SDK by function Library.setNotifierCallback .

See also
Library

Member Function Documentation

◆ onOutOfMemory()

void com.foxit.sdk.common.NotifierCallback.onOutOfMemory ( )

A callback function used to notify application when Foxit PDF SDK runs out of memory.

When this callback function is triggered, that means Foxit PDF SDK runs out of memory. At this moment, application cannot use any API in Foxit PDF SDK. In this case, application can exit with some warning information, or application is aborted and tried to restart. Here, "restart an application" does not mean to call function Library.reinitialize but to call function Library.initialize again to load Foxit PDF SDK again from the beginning.

Returns
None.

◆ release()

void com.foxit.sdk.common.NotifierCallback.release ( )

A callback function used to release current callback object itself.

Returns
None.