EventHub

HarmonyOS EventHub 模块详解

一、引言

EventHub 模块在 HarmonyOS 应用开发中扮演着重要角色,它提供了事件中心的功能,包括事件订阅、取消订阅以及触发事件等操作,为应用内的模块间通信提供了有效的机制。

二、模块基本信息

  • 接口支持版本:首批接口从 API version 9 开始支持,后续版本的新增接口采用上角标单独标记起始版本。
  • 适用模型:本模块接口仅可在 Stage 模型下使用。

三、导入模块

在使用 EventHub 功能前,需导入相关模块,使用以下语句:

import { common } from '@kit.AbilityKit';

四、使用说明

  • 首先要通过 UIAbility 实例的成员变量 context 来获取 EventHub 对象。示例代码如下:
import { UIAbility } from '@kit.AbilityKit';

export default class EntryAbility extends UIAbility {
    eventFunc() {
        console.log('eventFunc is called');
    }

    onCreate() {
        this.context.eventHub.on('myEvent', this.eventFunc);
    }
}
  • 需要注意的是,EventHub 不是全局的事件中心,不同的 context 对象拥有不同的 EventHub 对象,事件的订阅、取消订阅、触发都作用在某一个具体的 EventHub 对象上,因此不能用于虚拟机间或者进程间的事件传递。

五、EventHub.on 方法

  • 功能:用于订阅指定事件。
  • 说明:当 callbackemit 触发时,调用方是 EventHub 对象,如果要修改 callbackthis 的指向,可以使用箭头函数。从 API version 11 开始,该接口支持在元服务中使用,其系统能力为 SystemCapability.Ability.AbilityRuntime.Core
  • 参数
    • event(必填,string 类型):事件名称。
    • callback(必填,Function 类型):事件回调,事件触发后调用。
  • 错误码:若出现参数错误,错误码为 401,可能原因包括必填参数未指定、参数类型不正确或参数验证失败,详细参考通用错误码。
  • 示例
    • 示例 1:
import { UIAbility } from '@kit.AbilityKit';
import { BusinessError } from '@kit.BasicServicesKit';

export default class EntryAbility extends UIAbility {
    value: number = 12;

    onCreate() {
        try {
            this.context.eventHub.on('myEvent', this.eventFunc);
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg: string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    onForeground() {
        try {
            // 结果:
            // eventFunc is called, value: undefined
            this.context.eventHub.emit('myEvent');
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg: string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    eventFunc() {
        console.log(`eventFunc is called, value: ${this.value}`);
    }
}

在这个示例中,由于 callbackemit 触发时调用方是 EventHub 对象,而 EventHub 对象没有 value 属性,所以结果是 undefined

- 示例 2:
import { UIAbility } from '@kit.AbilityKit';
import { BusinessError } from '@kit.BasicServicesKit';

export default class EntryAbility extends UIAbility {
    value: number = 12;

    onCreate() {
        try {
            // 支持使用匿名函数订阅事件
            this.context.eventHub.on('myEvent', () => {
                console.log(`anonymous eventFunc is called, value: ${this.value}`);
            });
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg: string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    onForeground() {
        try {
            // 结果:
            // anonymous eventFunc is called, value: 12
            this.context.eventHub.emit('myEvent');
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg:  string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    eventFunc() {
        console.log(`eventFunc is called, value: ${this.value}`);
    }
}

此示例中,callback 使用箭头函数,调用方变为 EntryAbility 对象,该对象存在 value 属性,所以结果是 12。

六、EventHub.off 方法

  • 功能:取消订阅指定事件。
  • 说明:传入 callback 时,取消指定的 callback 对指定事件的订阅,当该事件触发后,将不会回调该 callback;不传 callback 则取消所有 callback 对指定事件的订阅。从 API version 11 开始支持在元服务中使用,系统能力为 SystemCapability.Ability.AbilityRuntime.Core
  • 参数
    • event(必填,string 类型):事件名称。
    • callback(可选,Function 类型):事件回调。如果不传 callback,则取消订阅该事件下所有 callback
  • 错误码:参数错误时返回 401,原因同 EventHub.on 方法。
  • 示例
import { UIAbility } from '@kit.AbilityKit';
import { BusinessError } from '@kit.BasicServicesKit';

export default class EntryAbility extends UIAbility {
    onCreate() {
        try {
            this.context.eventHub.on('myEvent', this.eventFunc1);
            this.context.eventHub.off('myEvent', this.eventFunc1); // 取消 eventFunc1 对 myEvent 事件的订阅
            this.context.eventHub.on('myEvent', this.eventFunc1);
            this.context.eventHub.on('myEvent', this.eventFunc2);
            this.context.eventHub.off('myEvent'); // 取消 eventFunc1 和 eventFunc2 对 myEvent 事件的订阅
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg: string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    eventFunc1() {
        console.log('eventFunc1 is called');
    }

    eventFunc2() {
        console.log('eventFunc2 is called');
    }
}

七、EventHub.emit 方法

  • 功能:触发指定事件。
  • 说明:从 API version 11 开始支持在元服务中使用,系统能力为 SystemCapability.Ability.AbilityRuntime.Core
  • 参数
    • event(必填,string 类型):事件名称。
    • ...args(可选,Object[] 类型):可变参数,事件触发时,传递给回调函数的参数。
  • 错误码:参数错误返回 401。
  • 示例
import { UIAbility } from '@kit.AbilityKit';
import { BusinessError } from '@kit.BasicServicesKit';

export default class EntryAbility extends UIAbility {
    onCreate() {
        this.context.eventHub.on('myEvent', this.eventFunc);
    }

    onDestroy() {
        try {
            // 结果:
            // eventFunc is called,undefined,undefined
            this.context.eventHub.emit('myEvent');
            // 结果:
            // eventFunc is called,1,undefined
            this.context.eventHub.emit('myEvent', 1);
            // 结果:
            // eventFunc is called,1,2
            this.context.eventHub.emit('myEvent', 1, 2);
        } catch (e) {
            let code: number = (e as BusinessError).code;
            let msg: string = (e as BusinessError).message;
            console.error(`EventHub emit error, code: ${code}, msg: ${msg}`);
        }
    }

    eventFunc(argOne: number, argTwo: number) {
        console.log(`eventFunc is called, ${argOne}, ${argTwo}`);
    }
}

通过对 EventHub 模块的这些方法的了解和运用,开发者可以在 HarmonyOS 应用中有效地实现事件驱动的编程逻辑,增强应用的交互性和灵活性。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容