hop-multi-device-collaboration.md 22.3 KB
Newer Older
L
liuxiaowei42 已提交
1
# 多端协同
Z
zengyawen 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15


## 功能描述

多端协同主要包括如下场景:

- [通过跨设备启动UIAbility和ServiceExtensionAbility组件实现多端协同(无返回数据)](#通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据)

- [通过跨设备启动UIAbility组件实现多端协同(获取返回数据)](#通过跨设备启动uiability组件实现多端协同获取返回数据)

- [通过跨设备连接ServiceExtensionAbility组件实现多端协同](#通过跨设备连接serviceextensionability组件实现多端协同)

- [通过跨设备Call调用实现多端协同](#通过跨设备call调用实现多端协同)

X
xinking129 已提交
16

Z
zengyawen 已提交
17 18 19 20 21 22 23 24 25 26 27 28
## 多端协同流程

多端协同流程如下图所示。

  **图1** 多端协同流程图  
![hop-multi-device-collaboration](figures/hop-multi-device-collaboration.png)


## 约束限制

- 由于“多端协同任务管理”能力尚未具备,开发者当前只能通过开发系统应用获取设备列表,不支持三方应用接入。

Z
zhongjianfei 已提交
29
- 多端协同需遵循[分布式跨设备组件启动规则](component-startup-rules.md#分布式跨设备组件启动规则)
Z
zengyawen 已提交
30 31 32 33 34 35

- 为了获得最佳体验,使用want传输的数据建议在100KB以下。


## 通过跨设备启动UIAbility和ServiceExtensionAbility组件实现多端协同(无返回数据)

36
在设备A上通过发起端应用提供的启动按钮,启动设备B上指定的UIAbility与ServiceExtensionAbility。
Z
zengyawen 已提交
37 38 39 40 41 42 43 44 45


### 接口说明

  **表1** 跨设备启动API接口功能介绍

| **接口名** | **描述** |
| -------- | -------- |
| startAbility(want: Want, callback: AsyncCallback<void>): void; | 启动UIAbility和ServiceExtensionAbility(callback形式)。 |
46 47
| stopServiceExtensionAbility(want: Want, callback: AsyncCallback<void>): void; | 退出启动的ServiceExtensionAbility(callback形式)。 |
| stopServiceExtensionAbility(want: Want): Promise<void>; | 退出启动的ServiceExtensionAbility(Promise形式)。 |
Z
zengyawen 已提交
48

X
xinking129 已提交
49

Z
zengyawen 已提交
50 51
### 开发步骤

52
1. 需要申请`ohos.permission.DISTRIBUTED_DATASYNC`权限,配置方式请参见[配置文件权限声明](../security/accesstoken-guidelines.md#配置文件权限声明)
Z
zengyawen 已提交
53

54
2. 同时需要在应用首次启动时弹窗向用户申请授权,使用方式请参见[向用户申请授权](../security/accesstoken-guidelines.md#向用户申请授权)
Z
zengyawen 已提交
55 56

3. 获取目标设备的设备ID。
57

Z
zengyawen 已提交
58
   ```ts
L
liuxiaowei42 已提交
59
   import deviceManager from '@ohos.distributedDeviceManager';
Z
zengyawen 已提交
60
   
L
liuxiaowei42 已提交
61
   let dmClass: deviceManager.DeviceManager;
Z
zengyawen 已提交
62 63
   function initDmClass() {
       // 其中createDeviceManager接口为系统API
L
liuxiaowei42 已提交
64 65 66 67 68
       try{
           dmClass = deviceManager.createDeviceManager('ohos.samples.demo');
       } catch(err) {
           console.error("createDeviceManager errCode:" + err.code + ",errMessage:" + err.message);
       }
Z
zengyawen 已提交
69 70 71
   }
   function getRemoteDeviceId() {
       if (typeof dmClass === 'object' && dmClass !== null) {
L
liuxiaowei42 已提交
72
           let list = dmClass.getAvailableDeviceListSync();
Z
zengyawen 已提交
73
           if (typeof (list) === 'undefined' || typeof (list.length) === 'undefined') {
L
liuxiaowei42 已提交
74 75 76 77 78
               console.info('getRemoteDeviceId err: list is null');
               return;
           }
           if (list.length === 0) {
               console.info("getRemoteDeviceId err: list is empty");
Z
zengyawen 已提交
79 80
               return;
           }
L
liuxiaowei42 已提交
81
       	return list[0].networkId;
Z
zengyawen 已提交
82
       } else {
L
liuxiaowei42 已提交
83
           console.info('getRemoteDeviceId err: dmClass is null');
Z
zengyawen 已提交
84 85 86 87
       }
   }
   ```

88
4. 设置目标组件参数,调用[`startAbility()`](../reference/apis/js-apis-inner-application-uiAbilityContext.md#uiabilitycontextstartability)接口,启动UIAbility或ServiceExtensionAbility。
89

Z
zengyawen 已提交
90 91 92 93
   ```ts
   let want = {
       deviceId: getRemoteDeviceId(), 
       bundleName: 'com.example.myapplication',
L
liuxiaowei42 已提交
94 95
       abilityName: 'EntryAbility',
       moduleName: 'entry', // moduleName非必选
Z
zengyawen 已提交
96 97 98
   }
   // context为发起端UIAbility的AbilityContext
   this.context.startAbility(want).then(() => {
99
       ...
Z
zengyawen 已提交
100
   }).catch((err) => {
101
       ...
Z
zengyawen 已提交
102 103 104
   })
   ```

L
liuxiaowei42 已提交
105
5. 当设备A发起端应用不需要设备B上的ServiceExtensionAbility时,可调用[stopServiceExtensionAbility](../reference/apis/js-apis-inner-application-uiAbilityContext.md#uiabilitycontextstopserviceextensionability)接口退出。(该接口不支持UIAbility的退出,UIAbility由用户手动通过任务管理退出)
X
xinking129 已提交
106 107 108 109 110 111 112 113

   ```ts
   let want = {
       deviceId: getRemoteDeviceId(),
       bundleName: 'com.example.myapplication',
       abilityName: 'FuncAbility',
       moduleName: 'module1', // moduleName非必选
   }
X
xinking129 已提交
114
   // 退出由startAbility接口启动的ServiceExtensionAbility
X
xinking129 已提交
115 116 117 118 119 120
   this.context.stopServiceExtensionAbility(want).then(() => {
       console.info("stop service extension ability success")
   }).catch((err) => {
       console.info("stop service extension ability err is " + JSON.stringify(err))
   })
   ```
Z
zengyawen 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139

## 通过跨设备启动UIAbility组件实现多端协同(获取返回数据)

在设备A上通过应用提供的启动按钮,启动设备B上指定的UIAbility,当设备B上的UIAbility退出后,会将返回值发回设备A上的发起端应用。


### 接口说明

  **表2** 跨设备启动,返回结果数据API接口功能描述

| 接口名 | 描述 |
| -------- | -------- |
| startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): void; | 启动UIAbility并在该Ability退出的时候返回执行结果(callback形式)。 |
| terminateSelfWithResult(parameter: AbilityResult, callback: AsyncCallback<void>): void; | 停止UIAbility,配合startAbilityForResult使用,返回给接口调用方AbilityResult信息(callback形式)。 |
| terminateSelfWithResult(parameter: AbilityResult): Promise<void>; | 停止UIAbility,配合startAbilityForResult使用,返回给接口调用方AbilityResult信息(promise形式)。 |


### 开发步骤

140
1. 需要申请`ohos.permission.DISTRIBUTED_DATASYNC`权限,配置方式请参见[配置文件权限声明](../security/accesstoken-guidelines.md#配置文件权限声明)
Z
zengyawen 已提交
141

142
2. 同时需要在应用首次启动时弹窗向用户申请授权,使用方式请参见[向用户申请授权](../security/accesstoken-guidelines.md#向用户申请授权)
Z
zengyawen 已提交
143 144

3. 在发起端设置目标组件参数,调用startAbilityForResult()接口启动目标端UIAbility,异步回调中的data用于接收目标端UIAbility停止自身后返回给调用方UIAbility的信息。getRemoteDeviceId方法参照[通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据](#通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据)
145

Z
zengyawen 已提交
146 147 148 149 150 151 152 153 154
   ```ts
   let want = {
       deviceId: getRemoteDeviceId(), 
       bundleName: 'com.example.myapplication',
       abilityName: 'FuncAbility',
       moduleName: 'module1', // moduleName非必选
   }
   // context为发起端UIAbility的AbilityContext
   this.context.startAbilityForResult(want).then((data) => {
155
       ...
Z
zengyawen 已提交
156
   }).catch((err) => {
157
       ...
Z
zengyawen 已提交
158 159 160 161
   })
   ```

4. 在目标端UIAbility任务完成后,调用terminateSelfWithResult()方法,将数据返回给发起端的UIAbility。
162

Z
zengyawen 已提交
163 164 165 166 167 168 169 170 171 172 173 174
   ```ts
   const RESULT_CODE: number = 1001;
   let abilityResult = {
       resultCode: RESULT_CODE,
       want: {
           bundleName: 'com.example.myapplication',
           abilityName: 'FuncAbility',
           moduleName: 'module1',
       },
   }
   // context为目标端UIAbility的AbilityContext
   this.context.terminateSelfWithResult(abilityResult, (err) => {
175
       ...
Z
zengyawen 已提交
176 177 178 179
   });
   ```

5. 发起端UIAbility接收到目标端UIAbility返回的信息,对其进行处理。
180

Z
zengyawen 已提交
181 182 183
   ```ts
   const RESULT_CODE: number = 1001;
   
184
   ...
Z
zengyawen 已提交
185
   
186
   // context为调用方UIAbility的UIAbilityContext
Z
zengyawen 已提交
187 188 189 190
   this.context.startAbilityForResult(want).then((data) => {
       if (data?.resultCode === RESULT_CODE) {
           // 解析目标端UIAbility返回的信息
           let info = data.want?.parameters?.info
191
           ...
Z
zengyawen 已提交
192 193
       }
   }).catch((err) => {
194
       ...
Z
zengyawen 已提交
195 196 197 198 199 200
   })
   ```


## 通过跨设备连接ServiceExtensionAbility组件实现多端协同

Z
zhongjianfei 已提交
201
系统应用可以通过[connectServiceExtensionAbility()](../reference/apis/js-apis-inner-application-uiAbilityContext.md#abilitycontextconnectserviceextensionability)跨设备连接一个服务,实现跨设备远程调用。比如:分布式游戏场景,平板作为遥控器,智慧屏作为显示器。
Z
zengyawen 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216


### 接口说明

  **表3** 跨设备连接API接口功能介绍

| 接口名 | 描述 |
| -------- | -------- |
| connectServiceExtensionAbility(want: Want, options: ConnectOptions): number; | 连接ServiceExtensionAbility。 |
| disconnectServiceExtensionAbility(connection: number, callback:AsyncCallback<void>): void; | 断开连接(callback形式)。 |
| disconnectServiceExtensionAbility(connection: number): Promise<void>; | 断开连接(promise形式)。 |


### 开发步骤

217 218 219
1. 需要申请`ohos.permission.DISTRIBUTED_DATASYNC`权限,配置方式请参见[配置文件权限声明](../security/accesstoken-guidelines.md#配置文件权限声明)

2. 同时需要在应用首次启动时弹窗向用户申请授权,使用方式请参见[向用户申请授权](../security/accesstoken-guidelines.md#向用户申请授权)
Z
zengyawen 已提交
220

L
liuxiaowei42 已提交
221
3. 如果已有后台服务,请直接进入下一步;如果没有,则[实现一个后台服务](serviceextensionability.md#实现一个后台服务(仅对系统应用开放))
Z
zengyawen 已提交
222 223 224

4. 连接一个后台服务。
   - 实现IAbilityConnection接口。IAbilityConnection提供了以下方法供开发者实现:onConnect()是用来处理连接Service成功的回调,onDisconnect()是用来处理Service异常终止的回调,onFailed()是用来处理连接Service失败的回调。
225
   - 设置目标组件参数,包括目标设备ID、Bundle名称、Ability名称。
Z
zengyawen 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
   - 调用connectServiceExtensionAbility发起连接。
   - 连接成功,收到目标设备返回的服务句柄。
   - 进行跨设备调用,获得目标端服务返回的结果。
     
      ```ts
      import rpc from '@ohos.rpc';
      
      const REQUEST_CODE = 99;
      let want = {
          "deviceId": getRemoteDeviceId(), 
          "bundleName": "com.example.myapplication",
          "abilityName": "ServiceExtAbility"
      };
      let options = {
          onConnect(elementName, remote) {
              console.info('onConnect callback');
              if (remote === null) {
                  console.info(`onConnect remote is null`);
                  return;
              }
              let option = new rpc.MessageOption();
              let data = new rpc.MessageParcel();
              let reply = new rpc.MessageParcel();
              data.writeInt(1);
              data.writeInt(99);  // 开发者可发送data到目标端应用进行相应操作
      
              // @param code 表示客户端发送的服务请求代码。
              // @param data 表示客户端发送的{@link MessageParcel}对象。
              // @param reply 表示远程服务发送的响应消息对象。
              // @param options 指示操作是同步的还是异步的。
              // 
              // @return 如果操作成功返回{@code true}; 否则返回 {@code false}。
              remote.sendRequest(REQUEST_CODE, data, reply, option).then((ret) => {
                  let msg = reply.readInt();   // 在成功连接的情况下,会收到来自目标端返回的信息(100)
                  console.info(`sendRequest ret:${ret} msg:${msg}`);
              }).catch((error) => {
                  console.info('sendRequest failed');
              });
          },
          onDisconnect(elementName) {
zyjhandsome's avatar
zyjhandsome 已提交
266
              console.info('onDisconnect callback');
Z
zengyawen 已提交
267 268
          },
          onFailed(code) {
zyjhandsome's avatar
zyjhandsome 已提交
269
              console.info('onFailed callback');
Z
zengyawen 已提交
270 271 272 273 274 275 276 277
          }
      }
      // 建立连接后返回的Id需要保存下来,在解绑服务时需要作为参数传入
      let connectionId = this.context.connectServiceExtensionAbility(want, options);
      ```

      getRemoteDeviceId方法参照[通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据](#通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据)。

X
xinking129 已提交
278
5. 断开连接。调用disconnectServiceExtensionAbility()断开与后台服务的连接。
279

Z
zengyawen 已提交
280 281 282 283 284 285 286
   ```ts
   let connectionId = 1 // 在通过connectServiceExtensionAbility绑定服务时返回的Id
   this.context.disconnectServiceExtensionAbility(connectionId).then((data) => {
       console.info('disconnectServiceExtensionAbility success');
   }).catch((error) => {
       console.error('disconnectServiceExtensionAbility failed');
   })
X
xinking129 已提交
287
   ```
Z
zengyawen 已提交
288

X
xinking129 已提交
289

Z
zengyawen 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
## 通过跨设备Call调用实现多端协同

跨设备Call调用的基本原理与设备内Call调用相同,请参见[通过Call调用实现UIAbility交互(仅对系统应用开放)](uiability-intra-device-interaction.md#通过call调用实现uiability交互仅对系统应用开放)

下面介绍跨设备Call调用实现多端协同的方法。


### 接口说明

  **表4** Call API接口功能介绍

| 接口名 | 描述 |
| -------- | -------- |
| startAbilityByCall(want: Want): Promise<Caller>; | 启动指定UIAbility至前台或后台,同时获取其Caller通信接口,调用方可使用Caller与被启动的Ability进行通信。 |
| on(method: string, callback: CalleeCallBack): void | 通用组件Callee注册method对应的callback方法。 |
| off(method: string): void | 通用组件Callee解注册method的callback方法。 |
D
dy_study 已提交
306 307
| call(method: string, data: rpc.Parcelable): Promise<void> | 向通用组件Callee发送约定序列化数据。 |
| callWithResult(method: string, data: rpc.Parcelable): Promise<rpc.MessageSequence> | 向通用组件Callee发送约定序列化数据, 并将Callee返回的约定序列化数据带回。 |
Z
zengyawen 已提交
308 309 310 311 312 313
| release(): void | 释放通用组件的Caller通信接口。 |
| on(type: "release", callback: OnReleaseCallback): void | 注册通用组件通信断开监听通知。 |


### 开发步骤

314 315 316
1. 需要申请`ohos.permission.DISTRIBUTED_DATASYNC`权限,配置方式请参见[配置文件权限声明](../security/accesstoken-guidelines.md#配置文件权限声明)

2. 同时需要在应用首次启动时弹窗向用户申请授权,使用方式请参见[向用户申请授权](../security/accesstoken-guidelines.md#向用户申请授权)
Z
zengyawen 已提交
317 318

3. 创建被调用端UIAbility。
319
     被调用端UIAbility需要实现指定方法的数据接收回调函数、数据的序列化及反序列化方法。在需要接收数据期间,通过on接口注册监听,无需接收数据时通过off接口解除监听。
Z
zengyawen 已提交
320

321 322
     1. 配置UIAbility的启动模式。
         配置module.json5,将CalleeAbility配置为单实例"singleton"。
Z
zengyawen 已提交
323

324 325 326
         | Json字段 | 字段说明 |
         | -------- | -------- |
         | “launchType” | Ability的启动模式,设置为"singleton"类型。 |
Z
zengyawen 已提交
327

328
         UIAbility配置标签示例如下:
Z
zengyawen 已提交
329

330 331 332 333
         
         ```json
         "abilities":[{
             "name": ".CalleeAbility",
334
             "srcEntry": "./ets/CalleeAbility/CalleeAbility.ts",
335 336 337 338
             "launchType": "singleton",
             "description": "$string:CalleeAbility_desc",
             "icon": "$media:icon",
             "label": "$string:CalleeAbility_label",
339
             "exported": true
340 341 342 343 344 345 346 347 348
         }]
         ```
     2. 导入UIAbility模块。
        
         ```ts
         import Ability from '@ohos.app.ability.UIAbility';
         ```
     3. 定义约定的序列化数据。
         调用端及被调用端发送接收的数据格式需协商一致,如下示例约定数据由number和string组成。
Z
zengyawen 已提交
349 350

         
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
         ```ts
         export default class MyParcelable {
             num: number = 0;
             str: string = "";
         
             constructor(num, string) {
                 this.num = num;
                 this.str = string;
             }
         
             marshalling(messageSequence) {
                 messageSequence.writeInt(this.num);
                 messageSequence.writeString(this.str);
                 return true;
             }
         
             unmarshalling(messageSequence) {
                 this.num = messageSequence.readInt();
                 this.str = messageSequence.readString();
                 return true;
             }
         }
         ```
     4. 实现Callee.on监听及Callee.off解除监听。
           如下示例在Ability的onCreate注册MSG_SEND_METHOD监听,在onDestroy取消监听,收到序列化数据后作相应处理并返回。应用开发者根据实际业务需要做相应处理。
           
         ```ts
         const TAG: string = '[CalleeAbility]';
         const MSG_SEND_METHOD: string = 'CallSendMsg';
         
         function sendMsgCallback(data) {
             console.info('CalleeSortFunc called');
         
             // 获取Caller发送的序列化数据
             let receivedData = new MyParcelable(0, '');
             data.readParcelable(receivedData);
             console.info(`receiveData[${receivedData.num}, ${receivedData.str}]`);
         
             // 作相应处理
             // 返回序列化数据result给Caller
             return new MyParcelable(receivedData.num + 1, `send ${receivedData.str} succeed`);
         }
         
         export default class CalleeAbility extends Ability {
             onCreate(want, launchParam) {
                 try {
                     this.callee.on(MSG_SEND_METHOD, sendMsgCallback);
                 } catch (error) {
                     console.info(`${MSG_SEND_METHOD} register failed with error ${JSON.stringify(error)}`);
                 }
             }
         
             onDestroy() {
                 try {
                     this.callee.off(MSG_SEND_METHOD);
                 } catch (error) {
                     console.error(TAG, `${MSG_SEND_METHOD} unregister failed with error ${JSON.stringify(error)}`);
                 }
             }
         }
         ```
Z
zengyawen 已提交
412 413 414 415 416

4. 获取Caller接口,访问被调用端UIAbility。
   1. 导入UIAbility模块。
      
       ```ts
zyjhandsome's avatar
zyjhandsome 已提交
417
       import Ability from '@ohos.app.ability.UIAbility';
Z
zengyawen 已提交
418 419
       ```
   2. 获取Caller通信接口。
420
       Ability的context属性实现了startAbilityByCall方法,用于获取指定通用组件的Caller通信接口。如下示例通过this.context获取Ability实例的context属性,使用startAbilityByCall拉起Callee被调用端并获取Caller通信接口,注册Caller的onRelease和onRemoteStateChange监听。应用开发者根据实际业务需要做相应处理。
Z
zengyawen 已提交
421 422 423 424

       
       ```ts
       async onButtonGetRemoteCaller() {
zyjhandsome's avatar
zyjhandsome 已提交
425 426
           var caller = undefined;
           var context = this.context;
Z
zengyawen 已提交
427 428 429 430 431 432 433
       
           context.startAbilityByCall({
               deviceId: getRemoteDeviceId(),
               bundleName: 'com.samples.CallApplication',
               abilityName: 'CalleeAbility'
           }).then((data) => {
               if (data != null) {
zyjhandsome's avatar
zyjhandsome 已提交
434 435
                   caller = data;
                   console.info('get remote caller success');
Z
zengyawen 已提交
436 437
                   // 注册caller的release监听
                   caller.onRelease((msg) => {
zyjhandsome's avatar
zyjhandsome 已提交
438
                       console.info(`remote caller onRelease is called ${msg}`);
Z
zengyawen 已提交
439
                   })
zyjhandsome's avatar
zyjhandsome 已提交
440
                   console.info('remote caller register OnRelease succeed');
441 442 443
                   // 注册caller的协同场景下跨设备组件状态变化监听通知
                   try {
                        caller.onRemoteStateChange((str) => {
444
                            console.info('Remote state changed ' + str);
445 446
                        });
                    } catch (error) {
447
                        console.info('Caller.onRemoteStateChange catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
448
                    }
Z
zengyawen 已提交
449 450
               }
           }).catch((error) => {
zyjhandsome's avatar
zyjhandsome 已提交
451
               console.error(`get remote caller failed with ${error}`);
Z
zengyawen 已提交
452 453 454 455 456 457 458
           })
       }
       ```

       getRemoteDeviceId方法参照[通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据](#通过跨设备启动uiability和serviceextensionability组件实现多端协同无返回数据)。

5. 向被调用端UIAbility发送约定序列化数据。
D
dy_study 已提交
459
   1. 向被调用端发送Parcelable数据有两种方式,一种是不带返回值,一种是获取被调用端返回的数据,method以及序列化数据需要与被调用端协商一致。如下示例调用Call接口,向Callee被调用端发送数据。
Z
zengyawen 已提交
460 461
      
       ```ts
zyjhandsome's avatar
zyjhandsome 已提交
462
       const MSG_SEND_METHOD: string = 'CallSendMsg';
Z
zengyawen 已提交
463 464
       async onButtonCall() {
           try {
D
dy_study 已提交
465
               let msg = new MyParcelable(1, 'origin_Msg');
zyjhandsome's avatar
zyjhandsome 已提交
466
               await this.caller.call(MSG_SEND_METHOD, msg);
Z
zengyawen 已提交
467
           } catch (error) {
zyjhandsome's avatar
zyjhandsome 已提交
468
               console.info(`caller call failed with ${error}`);
Z
zengyawen 已提交
469 470 471 472 473 474
           }
       }
       ```
   2. 如下示例调用CallWithResult接口,向Callee被调用端发送待处理的数据originMsg,并将’CallSendMsg’方法处理完毕的数据赋值给backMsg。
      
       ```ts
zyjhandsome's avatar
zyjhandsome 已提交
475
       const MSG_SEND_METHOD: string = 'CallSendMsg';
L
liuxiaowei42 已提交
476 477
       let originMsg: string = '';
       let backMsg: string = '';
Z
zengyawen 已提交
478 479
       async onButtonCallWithResult(originMsg, backMsg) {
           try {
D
dy_study 已提交
480
               let msg = new MyParcelable(1, originMsg);
zyjhandsome's avatar
zyjhandsome 已提交
481 482
               const data = await this.caller.callWithResult(MSG_SEND_METHOD, msg);
               console.info('caller callWithResult succeed');
Z
zengyawen 已提交
483
       
D
dy_study 已提交
484 485
               let result = new MyParcelable(0, '');
               data.readParcelable(result);
zyjhandsome's avatar
zyjhandsome 已提交
486 487
               backMsg(result.str);
               console.info(`caller result is [${result.num}, ${result.str}]`);
Z
zengyawen 已提交
488
           } catch (error) {
zyjhandsome's avatar
zyjhandsome 已提交
489
               console.info(`caller callWithResult failed with ${error}`);
Z
zengyawen 已提交
490 491 492 493 494
           }
       }
       ```

6. 释放Caller通信接口。
495 496
   Caller不再使用后,应用开发者可以通过release接口释放Caller。

Z
zengyawen 已提交
497 498 499
   ```ts
   releaseCall() {
       try {
zyjhandsome's avatar
zyjhandsome 已提交
500
           this.caller.release();
Z
zengyawen 已提交
501
           this.caller = undefined
zyjhandsome's avatar
zyjhandsome 已提交
502
           console.info('caller release succeed');
Z
zengyawen 已提交
503
       } catch (error) {
zyjhandsome's avatar
zyjhandsome 已提交
504
           console.info(`caller release failed with ${error}`);
Z
zengyawen 已提交
505 506 507
       }
   }
   ```