1 Star 0 Fork 0

ike_yu/myNode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EventEmitter.js 771 Bytes
一键复制 编辑 原始数据 按行查看 历史
ike_yu 提交于 2024-01-08 15:25 . '学完EventEmitter和util'
const { EventEmitter } = require('events');
const custom = new EventEmitter()
function callback() {
console.log('执行自定义事件')
}
custom.on('tick', callback)
// 提前执行
custom.prependListener('tick', () => {
console.log('提前执行事件')
})
custom.once('tick', () => {
console.log('只执行一次')
})
// 避免同一事件回调函数过多,限制最多回调个数
custom.setMaxListeners(15)
// 触发事件
// custom.emit('tick')
// 输出所有事件名
console.log('eventNames', custom.eventNames())
setTimeout(() => {
// 删除指定名称事件
custom.removeListener('tick', callback)
// 删除全部监听事件
custom.removeAllListeners('tick')
console.log('eventNames', custom.eventNames())
}, 5000)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ike_yu/my-node.git
git@gitee.com:ike_yu/my-node.git
ike_yu
my-node
myNode
master

搜索帮助