鸿蒙开发接口公共事件与通知:【@ohos.events.emitter (Emitter)】

电子说

1.3w人已加入

描述

Emitter

说明:本模块首批接口从API version 7开始支持。

导入模块

import emitter from '@ohos.events.emitter'

权限列表

开发前请熟悉鸿蒙开发指导文档 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]

EventPriority

用于表示事件被投递的优先级。

系统能力 : 以下各项对应的系统能力均为 SystemCapability.Notification.Emitter

名称说明
IMMEDIATE0表示事件被立即投递。
HIGH1表示事件先于LOW优先级投递。
LOW2表示事件优于IDLE优先级投递,事件的默认优先级是LOW。
IDLE3表示在没有其他事件的情况下,才投递该事件。

emitter.on

on(event: [InnerEvent], callback: Callback<[EventData]>): void

持续订阅某个事件以及接收事件的回调处理。

系统能力 : SystemCapability.Notification.Emitter

参数:

参数名类型必填说明
event[InnerEvent]持续订阅的事件
callbackCallback<[EventData]>接收订阅事件时的回调处理

示例:

var innerEvent = {
    eventId: 1
};
var callback = (eventData) = > {
    console.info('callback');
};
emitter.on(innerEvent, callback);

emitter.once

once(event: [InnerEvent], callback: Callback<[EventData]>): void

单次订阅某个事件以及接收事件的回调处理,接收到回调处理后自动取消订阅。

系统能力 : SystemCapability.Notification.Emitter

参数:

参数名类型必填说明
event[InnerEvent]单次订阅的事件
callbackCallback<[EventData]>接收订阅事件时的回调处理

示例:

var innerEvent = {
    eventId: 1
};
var callback = (eventData) = > {
    console.info('once callback');
};
emitter.once(innerEvent, callback);

emitter.off

off(eventId: number): void

取消订阅某个事件。

系统能力 : SystemCapability.Notification.Emitter

参数:

参数名类型必填说明
eventIdnumber事件ID

示例:

emitter.off(1);

emitter.emit

emit(event: InnerEvent, data?: EventData): void

发送一个事件到事件队列。

系统能力 : SystemCapability.Notification.Emitter

参数:

参数名类型必填说明
event[InnerEvent]发送的事件
data[EventData]事件携带的数据

示例:

var eventData = {
    data: {
        "content": "c",
        "id": 1,
    }};
var innerEvent = {
    eventId: 1,
    priority: emitter.EventPriority.HIGH
};
emitter.emit(innerEvent, eventData);

InnerEvent

进程内的事件。

系统能力 : 以下各项对应的系统能力均为 SystemCapability.Notification.Emitter

名称参数类型可读可写说明
eventIdnumber事件的ID,由开发者定义用来辨别事件。
priority[EventPriority]事件被投递的优先级。HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿

接口

EventData

发送事件时传递的数据。

系统能力 : 以下各项对应的系统能力均为 SystemCapability.Notification.Emitter

名称参数类型可读可写说明
data[key: string]: any发送事件时传递的数据,数据类型支持字符串、整型和布尔型。

审核编辑 黄宇

打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分