nsISupports
Last changed in Gecko 1.8 (Firefox 1.5 / Thunderbird 1.5 / SeaMonkey 1.0)void onCheckComplete(in nsIXMLHttpRequest request, [array, size_is(updateCount)] in nsIUpdate updates, in unsigned long updateCount); |
void onError(in nsIXMLHttpRequest request, in nsIUpdate update); |
void onProgress(in nsIXMLHttpRequest request, in unsigned long position, in unsigned long totalSize); |
Called when the update check is completed.
void onCheckComplete( in nsIXMLHttpRequest request, [array, size_is(updateCount)] in nsIUpdate updates, in unsigned long updateCount );
request
nsIXMLHttpRequest
object handling the update check.updates
nsIUpdate
objects describing the available updates.updateCount
updates
array.Called when an error occurs while loading the remote update service file.
void onError( in nsIXMLHttpRequest request, in nsIUpdate update );
request
nsIXMLHttpRequest
object handling the update check.update
nsIUpdate
object containing details about the error in its statusText
attribute.Called every time there is a progress notification loading the update service file.
void onProgress( in nsIXMLHttpRequest request, in unsigned long position, in unsigned long totalSize );
request
nsIXMLHttpRequest
object handling the update check.position
totalSize