-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.js
26 lines (21 loc) · 812 Bytes
/
events.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Import events module
var events = require('events');
// Create an eventEmitter object
var eventEmitter = new events.EventEmitter();
// Create an event handler as follows
var connectHandler = function connected() {
console.log('connection succesful.');
setTimeout(() => {eventEmitter.emit('data_received');},0);
// Fire the data_received event
//eventEmitter.emit('data_received');
}
// Bind the connection event with the handler
eventEmitter.on('connection', connectHandler);
// Bind the data_received event with the anonymous function
eventEmitter.on('data_received', function(){
console.log('data received succesfully.');
});
// Fire the connection event
eventEmitter.emit('connection');
console.log (() => { console.log('Hello from '); return 'Peter'});
console.log("Program Ended.");