Add EventEmitter.removeListener

pull/22966/head
fwg 2009-11-13 17:12:41 +01:00 committed by Ryan Dahl
parent 04f9c9fb09
commit bd6c08a984
2 changed files with 14 additions and 0 deletions

View File

@ -207,6 +207,9 @@ server.addListener("connection", function (socket) {
});
----------------------------------------
+emitter.removeListener(event, listener)+ ::
Remove a listener from the listener array for the specified event.
*Caution*: changes array indices in the listener array behind the listener.
+emitter.listeners(event)+ ::
Returns an array of listeners for the specified event. This array can be

View File

@ -201,6 +201,17 @@ process.EventEmitter.prototype.addListener = function (type, listener) {
return this;
};
process.EventEmitter.prototype.removeListener = function (type, listener) {
if (listener instanceof Function) {
// does not use listeners(), so no side effect of creating _events[type]
if (!this._events || !this._events.hasOwnProperty(type)) return;
var list = this._events[type];
if (list.indexOf(listener) < 0) return;
list.splice(list.indexOf(listener), 1);
}
return this;
};
process.EventEmitter.prototype.listeners = function (type) {
if (!this._events) this._events = {};
if (!this._events.hasOwnProperty(type)) this._events[type] = [];