鸿蒙多线程开发——sendable共享模块

1、前 言

本篇文章是基于鸿蒙多线程开发——线程间数据通信对象03(sendable)的接续讨论。

2、共享模块

共享模块是进程内只会加载一次的模块,使用"use shared"这一指令来标记一个模块是否为共享模块。

非共享模块在同一线程内只加载一次,在不同线程间会加载多次,在不同的线程内都会产生新的模块对象。因此可以使用共享模块来实现进程单例。

🔐 约束限制

  • "use shared"需要与"use strict"一样写在ArkTS文件顶层,写在import语句之后其他语句之前。

    共享属性不存在传递性,即非共享模块A不会引入了共享模块B而使A变成共享。

  • 共享模块只支持ets文件。

  • 共享模块内不允许使用side-effects-import。

    共享模块可在线程间共享,共享后函数对依赖的非共享模块会在获取模块化变量值的时候懒加载,这种类型的import不涉及导出变量,所以不会被加载。

// 不允许使用side-effects-importimport "./sharedModule"
  • 共享模块导出的变量必须都是可共享对象。

    共享模块在并发实例间可共享,因此模块导出的所有对象都必须是可共享的。

  • 共享模块中不允许直接导出模块。

// test.etsexport let num = 1;export let str = 'aaa';// 共享模块'use shared'export * from './test'; // 编译报错,不允许直接导出模块export {num, str} from './test'; // 正确示例,导出对象合集
  • 共享模块可以引用共享模块或非共享模块。不限制共享模块的引用和被引用场景。

  • napi_load_module、napi_load_module_with_info以及动态加载不支持加载共享模块。

3、使用示例

  1. 共享模块内导出Sendable对象

// 共享模块sharedModule.etsimport { ArkTSUtils } from '@kit.ArkTS';// 声明当前模块为共享模块,只能导出可Sendable数据"use shared"// 共享模块,SingletonA全局唯一@Sendableclass SingletonA {  private count_: number = 0;  lock_: ArkTSUtils.locks.AsyncLock = new ArkTSUtils.locks.AsyncLock()  public async getCount(): Promise<number> {    return this.lock_.lockAsync(() => {      return this.count_;    })  }  public async increaseCount() {    await this.lock_.lockAsync(() => {      this.count_++;    })  }}export let singletonA = new SingletonA();

2. 在多个线程中操作共享模块导出的对象。

import { ArkTSUtils, taskpool } from '@kit.ArkTS';import { singletonA } from './sharedModule';@Sendableexport class A {  private count_: number = 0;  lock_: ArkTSUtils.locks.AsyncLock = new ArkTSUtils.locks.AsyncLock();  public async getCount(): Promise<number> {    return this.lock_.lockAsync(() => {      return this.count_;    })  }  public async increaseCount() {    await this.lock_.lockAsync(() => {      this.count_++;    })  }}@Concurrentasync function increaseCount() {  await singletonA.increaseCount();  console.info("SharedModule: count is:" + await singletonA.getCount());}@Concurrentasync function printCount() {  console.info("SharedModule: count is:" + await singletonA.getCount());}@Entry@Componentstruct Index {  @State message: string = 'Hello World';  build() {    Row() {      Column() {        Button("MainThread print count")          .onClick(async () => {            await printCount();          })        Button("Taskpool print count")          .onClick(async () => {            await taskpool.execute(printCount);          })        Button("MainThread increase count")          .onClick(async () => {            await increaseCount();          })        Button("Taskpool increase count")          .onClick(async () => {            await taskpool.execute(increaseCount);          })      }      .width('100%')    }    .height('100%')  }}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值