The mozIStorageProgressHandler
interface lets storage consumers receive callbacks during the execution of sqlite requests.
Inherits from: nsISupports
boolean onProgress(in mozIStorageConnection aConnection);
|
The onProgress()
method is called periodically while an sqlite operation is ongoing. This allows you to monitor the progress and possibly display status information to the user.
boolean onProgress( in mozIStorageConnection aConnection );
mozIStorageConnection
connection indicating the connection for which the callback was invoked.
Return true
to abort the request or false
to allow it to continue.