How to Use emitter. on in node. js _ node. js-js tutorial

Source: Internet
Author: User
This article mainly introduces node. emitter in js. the usage of the on method is described in this article. on Method description, syntax, receive parameters, use instances and implementation source code. For more information, see Method description:

Registers a listener for a specified event.

Syntax:

The Code is as follows:


Emitter. on (event, listener)
Emitter. addListener (event, listener)

Receiving parameters:

Event (string) event Type
The callback function when the listener (function) triggers an event.

Example:

The Code is as follows:


Server. on ('connection', function (stream ){
Console. log ('someone connected! ');
});

Source code:

The Code is as follows:


EventEmitter. prototype. addListener = function (type, listener ){
Var m;
If (! Util. isFunction (listener ))
Throw TypeError ('listener must be a function ');
If (! This. _ events)
This. _ events = {};
// To avoid recursion in the case that type = "newListener "! Before
// Adding it to the listeners, first emit "newListener ".
If (this. _ events. newListener)
This. emit ('newlistener ', type,
Util. isFunction (listener. listener )?
Listener. listener: listener );
If (! This. _ events [type])
// Optimize the case of one listener. Don't need the extra array object.
This. _ events [type] = listener;
Else if (util. isObject (this. _ events [type])
// If we 've already got an array, just append.
This. _ events [type]. push (listener );
Else
// Adding the second element, need to change to array.
This. _ events [type] = [this. _ events [type], listener];
// Check for listener leak
If (util. isObject (this. _ events [type]) &! This. _ events [type]. warned ){
Var m;
If (! Util. isUndefined (this. _ maxListeners )){
M = this. _ maxListeners;
} Else {
M = EventEmitter. defaultMaxListeners;
}
If (m & m> 0 & this. _ events [type]. length> m ){
This. _ events [type]. warned = true;
Console. error ('(node) warning: possible EventEmitter memory' +
'Leak detected. % d listeners added. '+
'Use emitter. setMaxListeners () to increase limit .',
This. _ events [type]. length );
Console. trace ();
}
}
Return this;
};

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.