Implement this interface to handle callbacks from nsIMemoryMultiReporter instances.
1.0
66
Introduced
Gecko 7.0
Inherits from:
nsISupports
Last changed in Gecko 7.0 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4)Method overview
void callback(in ACString process, in AUTF8String path, in PRInt32 kind, in PRInt32 units, in PRInt64 amount, in AUTF8String description, in nsISupports closure); |
Methods
callback()
Called to provide information from a multi-reporter. Implement this method to handle the report information.
void callback( in ACString process, in AUTF8String path, in PRInt32 kind, in PRInt32 units, in PRInt64 amount, in AUTF8String description, in nsISupports closure );
Parameters
-
process -
The value of the
processattribute for the memory reporter. -
path -
The value of the
pathattribute. -
kind -
The value of the
kindattribute. -
units -
The value of the
unitsattribute. -
amount -
The value of the
amountattribute. -
description -
The value of the
descriptionattribute. -
closure -
An
nsISupportsobject providing any additional data the callback might need; you provide this when you callnsIMemoryMultiReporter.collectReports(). It will benullif no additional data was provided.
