发现在 Node.js 中进程间通信使用的信号机制与事件机制十分相似(见下方代码示例),这背后有什么道理吗?或者一种设计模式?
signal
child.kill('SIGUSR1');
process.on('SIGUSR1', function () {
console.log('Got a SIGUSR1 signal.');
})
event
eventEmitter.emit('event')
eventEmitter.on('event', function () {
console.log('Trigger an event.');
})
本质上都是消息机制,这是一种编程的惯用法。