Firefox (Gecko) 代码 - 询问缓存 - 如何获取设备列表?
参考 nsICacheService (https://developer.mozilla.org/en/NsICacheService) 和 nsICacheVisitor (https://developer.mozilla.org/en/nsICacheVisitor):
- 我从哪里获取nsICacheVisitor 的实例?
- 我在哪里可以获得设备列表以便我可以调用visitEntry()和visitDevice()?
Referring to nsICacheService (https://developer.mozilla.org/en/NsICacheService) and nsICacheVisitor (https://developer.mozilla.org/en/nsICacheVisitor):
- Where do I get an instance of nsICacheVisitor?
- Where do I get a list of devices so that I can call visitEntry() and visitDevice()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
nsICacheVisitor 是一个接口,您可以实现并传递给 nsICacheService 上的 visitEntries 方法 。有关示例代码,请参阅此测试文件。
The nsICacheVisitor is an interface that you implement and pass to the visitEntries method on nsICacheService. See this test file for example code.