Event emitter,本软件是移植开源软件 emitter 源码在OpenHarmony上进行功能适配,在OpenHarmony上已支持原库的功能。 移植参考教程文档第三方开源js库移植适配指南.
It's simpler and more lightweight, and it works in any JavaScript environment, not just Node.js. It also provides mixin functionality to add event handling to existing objects without needing inheritance.
ohpm install @yyz116/emitter
OpenHarmony ohpm 环境配置等更多内容,请参考如何安装 OpenHarmony ohpm 包
import {Emitter} from "@yyz116/emitter"
import {Emitter} from "@yyz116/emitter"
var emitter = new Emitter;
emitter.on('someEvent', function(arg1, arg2){
console.log('listener1', arg1, arg2);
})
emitter.emit('someEvent', 'csdn.net/qq8864', 1991);
以下是原库的介绍内容,注意在harmonyos中原库的部分用法有区别,比如require的模块化用法不能用在鸿蒙中。
@socket.io/component-emitter
Event emitter component.
$ npm i @socket.io/component-emitter
The Emitter
may also be used as a mixin. For example
a "plain" object may become an emitter, or you may
extend an existing prototype.
As an Emitter
instance:
import { Emitter } from '@socket.io/component-emitter';
var emitter = new Emitter;
emitter.emit('something');
As a mixin:
import { Emitter } from '@socket.io/component-emitter';
var user = { name: 'tobi' };
Emitter(user);
user.emit('im a user');
As a prototype mixin:
import { Emitter } from '@socket.io/component-emitter';
Emitter(User.prototype);
Register an event
handler fn
.
Register a single-shot event
handler fn
,
removed immediately after it is invoked the
first time.
event
and fn
to remove a listener.event
to remove all listeners on that event.Emit an event
with variable option args.
Return an array of callbacks, or an empty array.
Check if this emitter has event
handlers.
MIT
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。