>웹 프론트엔드 >JS 튜토리얼 >Node.js 이벤트 루프

Node.js 이벤트 루프

黄舟
黄舟원래의
2017-01-17 15:38:271207검색

이벤트 루프

Node.js 단일 스레드는 이벤트 관찰자가 종료되지 않을 때까지 while(true) 이벤트 루프를 시작하는 것과 유사합니다.

이벤트가 발생하는 경우 각 비동기 이벤트는 이벤트 관찰자를 생성합니다. 발생하면 콜백 함수가 호출됩니다.

Node.js 이벤트 루프

케이스: loop.js

[code]// 引入 events 模块
var events = require('events');
// 创建 eventEmitter 对象
var eventEmitter = new events.EventEmitter();
// 创建事件处理程序
var connectHandler = function () {
    console.log('连接成功');

    // 触发 data_received 事件
    eventEmitter.emit('data_received');
}
// 绑定 connectHandler 事件处理程序
eventEmitter.on('connection', connectHandler);

// 使用匿名函数绑定 data_received处理事件处理函数
eventEmitter.on('data_received', function () {
    console.log('数据接收成功');
})
// 触发 connection 事件
eventEmitter.emit('connection');
console.log('执行完毕');

결과:

Node.js 이벤트 루프

위 내용은 Node.js 이벤트 루프 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.