Foxit PDF SDK
com.foxit.sdk.common.file.AsyncReaderCallback Class Reference
Inheritance diagram for com.foxit.sdk.common.file.AsyncReaderCallback:
com.foxit.sdk.common.fxcrt.FileReaderCallback

Public Member Functions

boolean addDownloadHint (int offset, long size)
 A callback function used to add offset and size to specify a data section, which should be downloaded by application then.
More...
 
boolean isDataAvail (int offset, long size)
 A callback function used to check whether the specified data section is available or not.
More...
 
- Public Member Functions inherited from com.foxit.sdk.common.fxcrt.FileReaderCallback
long getSize ()
 Get total size of the file.
More...
 
boolean readBlock (byte[] buffer, long offset, long size)
 Read a data block from the file.
More...
 
void release ()
 Called when to release everything.
More...
 

Detailed Description

This class represents a callback object to do file reading asynchronously. This class is derived from class FileReaderCallback . All the pure virtual functions in this class and its base class are used as callback functions and should be implemented by user, in order to asynchronously read file data (especially used for loading document), in a customized way.

See also
FileReaderCallback

Member Function Documentation

◆ addDownloadHint()

boolean com.foxit.sdk.common.file.AsyncReaderCallback.addDownloadHint ( int  offset,
long  size 
)

A callback function used to add offset and size to specify a data section, which should be downloaded by application then.

Foxit PDF SDK would call this callback function to report downloading hints for the download manager of application.
The position (as offset) and size of the section may not be accurate because part of the section might already be available. The download manager must manage this to maximize download efficiency.

Parameters
[in]offsetThe offset of a data section, which is to be hinted.
[in]sizeThe size of the data section.
Returns
true means success, while false means failure.

◆ isDataAvail()

boolean com.foxit.sdk.common.file.AsyncReaderCallback.isDataAvail ( int  offset,
long  size 
)

A callback function used to check whether the specified data section is available or not.

A data section is available only if all bytes in the section are available.

Parameters
[in]offsetThe offset in file.
[in]sizeThe size of the data section, which is to be checked if available.
Returns
true means the specified data section is available, while false means the specified data section is not available yet.