Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

nsIHttpActivityDistributor

This interface is used to register and unregister clients that wish to observe HTTP transport activity. This is primarily useful for debuggers and other traffic monitoring tasks.
1.0
28
Introduced
Gecko 1.9.2
Inherits from: nsIHttpActivityObserver Last changed in Gecko 1.9.2 (Firefox 3.6 / Thunderbird 3.1 / Fennec 1.0)

Implemented by: mozilla.org/network/http-activity-distributor;1 as a service:

var httpActivityDistributor = Components.classes["@mozilla.org/network/http-activity-distributor;1"]
                              .getService(Components.interfaces.nsIHttpActivityDistributor);

Method overview

void addObserver(in nsIHttpActivityObserver aObserver);
void removeObserver(in nsIHttpActivityObserver aObserver);

Methods

addObserver()

Begins delivery of notifications of HTTP transport activity.

void addObserver(
  in nsIHttpActivityObserver aObserver
);
Parameters
aObserver
The nsIHttpActivityObserver that should receive notifications of HTTP transport activity; this object's nsIHttpActivityObserver.observeActivity() method will be called each time activity occurs.

removeObserver()

Stops delivery of notifications of HTTP transport activity.

void removeObserver(
  in nsIHttpActivityObserver aObserver
);
Parameters
aObserver
The nsIHttpActivityObserver that should no longer receive notifications of HTTP transport activity.

See also

Document Tags and Contributors

 Contributors to this page: Sheppy, trevorh, teoli
 Last updated by: Sheppy,