nsIMemoryMultiReporter 编辑
xpcom/base/nsIMemoryReporter.idl
Scriptable Reports multiple memory measurements using a callback function that gets called once for each measurement. 1.0 66 Introduced Gecko 7.0 Inherits from: nsISupports
Last changed in Gecko 12.0 (Firefox 12.0 / Thunderbird 12.0 / SeaMonkey 2.9)If you want to gather multiple measurements in a single operation (such as a single traversal of a large data structure), you can use a multi-reporter to do so. The callback, which must implement the nsIMemoryMultiReporterCallback
interface, receives values that match the fields in the nsIMemoryReporter
object.
In order for a multi-reporter to gather and generate reports, you need to call collectReports()
. This will call the specified callback's nsIMemoryMultiReporterCallback.callback()
method once for each report. This will trigger any needed computation work.
nsIMemoryReporter
, which lets all fields except amount
be accessed without triggering computation.Attributes
Attribute | Type | Description |
---|---|---|
explicitNonHeap | PRInt64 | The sum of all of this multi-reporter's measurements that have a path that starts with "explicit" and are of the kind nsIMemoryReporterManager.explicit more efficient. This is important; multi-reporters can special-case this operation so it's much faster than gathering all the reports, filtering out the unneeded ones, and adding up the rest. |
Method overview
void collectReports(in nsIMemoryMultiReporterCallback callback, in nsISupports closure); |
Methods
collectReports()
void collectReports( in nsIMemoryMultiReporterCallback callback, in nsISupports closure );
Parameters
callback
- The
nsIMemoryMultiReporterCallback
to call when collection is complete. closure
- An object containing any additional data your
callback
might need; this gets passed to the callback. You can specifynull
if your callback doesn't require any additional data.
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论