Visit Mozilla.org

mozIStorageProgressHandler

From MDC

This article covers features introduced in Firefox 3

The mozIStorageProgressHandler interface lets storage consumers receive callbacks during the execution of sqlite requests.

Contents

mozIStorageProgressHandler is defined in storage/public/mozIStorageProgressHandler.idl. It is scriptable and unfrozen (hasn't changed since Mozilla 1.8).

Inherits from: nsISupports

[edit] Method overview

boolean onProgress(in mozIStorageConnection aConnection);

[edit] Methods

[edit] onProgress()

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
 );
[edit] Parameters
aConnection
A mozIStorageConnection connection indicating the connection for which the callback was invoked.
[edit] Return value

Return true to abort the request or false to allow it to continue.


[edit] See also