js-apis-app-ability-uiAbility.md 25.5 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.app.ability.UIAbility (UIAbility)
M
m00512953 已提交
2

Z
zhongjianfei 已提交
3
UIAbility是包含UI界面的应用组件,提供组件创建、销毁、前后台切换等生命周期回调,同时也具备组件协同的能力,组件协同主要提供如下常用功能:
M
m00512953 已提交
4

Z
zhongjianfei 已提交
5 6
- [Caller](#caller):由[startAbilityByCall](js-apis-inner-application-uiAbilityContext.md#uiabilitycontextstartabilitybycall)接口返回,CallerAbility(调用者)可使用Caller与CalleeAbility(被调用者)进行通信。
- [Callee](#callee):UIAbility的内部对象,CalleeAbility(被调用者)可以通过Callee与Caller进行通信。
M
m00512953 已提交
7 8 9 10 11 12 13 14 15

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

## 导入模块

```ts
D
donglin 已提交
16
import UIAbility from '@ohos.app.ability.UIAbility';
M
m00512953 已提交
17 18 19 20
```

## 属性

M
m00512953 已提交
21
**系统能力**:以下各项对应的系统能力均为SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
22

Z
zhongjianfei 已提交
23
| 名称 | 类型 | 可读 | 可写 | 说明 |
M
m00512953 已提交
24
| -------- | -------- | -------- | -------- | -------- |
Z
zhongjianfei 已提交
25 26 27 28
| context | [UIAbilityContext](js-apis-inner-application-uiAbilityContext.md) | 是 | 否 | 上下文。 |
| launchWant | [Want](js-apis-app-ability-want.md) | 是 | 否 | UIAbility启动时的参数。 |
| lastRequestWant | [Want](js-apis-app-ability-want.md) | 是 | 否 | UIAbility最后请求时的参数。|
| callee | [Callee](#callee) | 是 | 否 | 调用Stub(桩)服务对象。|
M
m00512953 已提交
29

Z
zhongjianfei 已提交
30
## UIAbility.onCreate
M
m00512953 已提交
31

M
m00512953 已提交
32
onCreate(want: Want, param: AbilityConstant.LaunchParam): void;
M
m00512953 已提交
33

Z
zhongjianfei 已提交
34
UIAbility创建时回调,执行初始化业务逻辑操作。
M
m00512953 已提交
35

M
m00512953 已提交
36
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
37 38 39

**参数:**

Z
zhongjianfei 已提交
40 41 42
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| want | [Want](js-apis-app-ability-want.md) | 是 | 当前UIAbility的Want类型信息,包括ability名称、bundle名称等。 |
M
m00512953 已提交
43
| param | [AbilityConstant.LaunchParam](js-apis-app-ability-abilityConstant.md#abilityconstantlaunchparam) | 是 | 创建 ability、上次异常退出的原因信息。 |
M
m00512953 已提交
44 45 46 47

**示例:**

  ```ts
Z
zhongjianfei 已提交
48
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
49
      onCreate(want, param) {
M
mingxihua 已提交
50
          console.log('onCreate, want: ${want.abilityName}');
M
m00512953 已提交
51 52 53 54 55
      }
  }
  ```


Z
zhongjianfei 已提交
56
## UIAbility.onWindowStageCreate
M
m00512953 已提交
57 58 59 60 61

onWindowStageCreate(windowStage: window.WindowStage): void

当WindowStage创建后调用。

M
m00512953 已提交
62
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
63 64 65

**参数:**

Z
zhongjianfei 已提交
66 67
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
68
| windowStage | [window.WindowStage](js-apis-window.md#windowstage9) | 是 | WindowStage相关信息。 |
M
m00512953 已提交
69 70 71 72

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
73
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
74 75 76 77 78 79 80
      onWindowStageCreate(windowStage) {
          console.log('onWindowStageCreate');
      }
  }
  ```


Z
zhongjianfei 已提交
81
## UIAbility.onWindowStageDestroy
M
m00512953 已提交
82 83 84 85 86

onWindowStageDestroy(): void

当WindowStage销毁后调用。

M
m00512953 已提交
87
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
88 89 90 91

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
92
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
93 94 95 96 97 98 99
      onWindowStageDestroy() {
          console.log('onWindowStageDestroy');
      }
  }
  ```


Z
zhongjianfei 已提交
100
## UIAbility.onWindowStageRestore
M
m00512953 已提交
101 102 103 104 105

onWindowStageRestore(windowStage: window.WindowStage): void

当迁移多实例ability时,恢复WindowStage后调用。

M
m00512953 已提交
106
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
107 108 109

**参数:**

Z
zhongjianfei 已提交
110 111
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
112
| windowStage | [window.WindowStage](js-apis-window.md#windowstage9) | 是 | WindowStage相关信息。 |
M
m00512953 已提交
113 114 115 116

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
117
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
118 119 120 121 122 123 124
      onWindowStageRestore(windowStage) {
          console.log('onWindowStageRestore');
      }
  }
  ```


Z
zhongjianfei 已提交
125
## UIAbility.onDestroy
M
m00512953 已提交
126

M
mingxihua 已提交
127
onDestroy(): void | Promise<void>;
M
m00512953 已提交
128

Z
zhongjianfei 已提交
129
UIAbility生命周期回调,在销毁时回调,执行资源清理等操作。
M
m00512953 已提交
130

M
m00512953 已提交
131
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
132 133 134 135

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
136
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
137 138 139 140 141 142 143
      onDestroy() {
          console.log('onDestroy');
      }
  }
  ```


Z
zhongjianfei 已提交
144
## UIAbility.onForeground
M
m00512953 已提交
145 146 147

onForeground(): void;

Z
zhongjianfei 已提交
148
UIAbility生命周期回调,当应用从后台转到前台时触发。
M
m00512953 已提交
149

M
m00512953 已提交
150
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
151 152 153 154

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
155
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
156 157 158 159 160 161 162
      onForeground() {
          console.log('onForeground');
      }
  }
  ```


Z
zhongjianfei 已提交
163
## UIAbility.onBackground
M
m00512953 已提交
164 165 166

onBackground(): void;

Z
zhongjianfei 已提交
167
UIAbility生命周期回调,当应用从前台转到后台时触发。
M
m00512953 已提交
168

M
m00512953 已提交
169
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
170 171 172 173

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
174
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
175 176 177 178 179 180 181
      onBackground() {
          console.log('onBackground');
      }
  }
  ```


Z
zhongjianfei 已提交
182
## UIAbility.onContinue
M
m00512953 已提交
183

M
mingxihua 已提交
184
onContinue(wantParam: { [key: string]: Object }): AbilityConstant.OnContinueResult;
M
m00512953 已提交
185 186 187

当ability迁移准备迁移时触发,保存数据。

M
m00512953 已提交
188
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
189 190 191

**参数:**

Z
zhongjianfei 已提交
192 193 194
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| wantParam | {[key: string]: any} | 是 | want相关参数。 |
M
m00512953 已提交
195 196 197

**返回值:**

Z
zhongjianfei 已提交
198 199
| 类型 | 说明 |
| -------- | -------- |
M
m00512953 已提交
200
| [AbilityConstant.OnContinueResult](js-apis-app-ability-abilityConstant.md#abilityconstantoncontinueresult) | 继续的结果。 |
M
m00512953 已提交
201 202 203 204

**示例:**
    
  ```ts
M
mingxihua 已提交
205
  import AbilityConstant from '@ohos.app.ability.AbilityConstant';
Z
zhongjianfei 已提交
206
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
207 208
      onContinue(wantParams) {
          console.log('onContinue');
M
mingxihua 已提交
209
          wantParams['myData'] = 'my1234567';
M
m00512953 已提交
210
          return AbilityConstant.OnContinueResult.AGREE;
M
m00512953 已提交
211 212 213 214 215
      }
  }
  ```


Z
zhongjianfei 已提交
216
## UIAbility.onNewWant
M
m00512953 已提交
217

M
m00512953 已提交
218
onNewWant(want: Want, launchParams: AbilityConstant.LaunchParam): void;
M
m00512953 已提交
219

M
m00512953 已提交
220
当传入新的Want,ability再次被拉起时会回调执行该方法。
M
m00512953 已提交
221

M
m00512953 已提交
222
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
223 224 225

**参数:**

Z
zhongjianfei 已提交
226 227 228
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| want | [Want](js-apis-app-ability-want.md) | 是 | Want类型参数,如ability名称,包名等。 |
M
m00512953 已提交
229
| launchParams | [AbilityConstant.LaunchParam](js-apis-app-ability-abilityConstant.md#abilityconstantlaunchparam) | 是 | UIAbility启动的原因、上次异常退出的原因信息。 |
M
m00512953 已提交
230 231 232 233

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
234
  class MyUIAbility extends UIAbility {
M
m00512953 已提交
235
      onNewWant(want, launchParams) {
M
mingxihua 已提交
236 237
          console.log('onNewWant, want: ${want.abilityName}');
          console.log('onNewWant, launchParams: ${JSON.stringify(launchParams)}');
M
m00512953 已提交
238 239 240 241
      }
  }
  ```

Z
zhongjianfei 已提交
242
## UIAbility.onDump
M
m00512953 已提交
243

D
merge  
donglin 已提交
244
onDump(params: Array\<string>): Array\<string>;
M
m00512953 已提交
245 246 247

转储客户端信息时调用。

M
m00512953 已提交
248
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
249 250 251

**参数:**

Z
zhongjianfei 已提交
252 253 254
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| params | Array\<string> | 是 | 表示命令形式的参数。|
M
m00512953 已提交
255 256 257 258

**示例:**
    
  ```ts
Z
zhongjianfei 已提交
259
  class MyUIAbility extends UIAbility {
D
merge  
donglin 已提交
260
      onDump(params) {
M
mingxihua 已提交
261
          console.log('dump, params: ${JSON.stringify(params)}');
M
mingxihua 已提交
262
          return ['params'];
M
m00512953 已提交
263 264 265 266 267
      }
  }
  ```


Z
zhongjianfei 已提交
268
## UIAbility.onSaveState
M
m00512953 已提交
269

M
mingxihua 已提交
270
onSaveState(reason: AbilityConstant.StateType, wantParam : {[key: string]: Object}): AbilityConstant.OnSaveResult;
M
m00512953 已提交
271

Z
zhongjianfei 已提交
272
该API配合[appRecovery](js-apis-app-ability-appRecovery.md)使用。在应用故障时,如果使能了自动保存状态,框架将回调onSaveState保存UIAbility状态。
M
m00512953 已提交
273

M
m00512953 已提交
274
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
275 276 277

**参数:**

Z
zhongjianfei 已提交
278 279
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
m00512953 已提交
280
| reason | [AbilityConstant.StateType](js-apis-app-ability-abilityConstant.md#abilityconstantstatetype) | 是 | 回调保存状态的原因。 |
Z
zhongjianfei 已提交
281
| wantParam | {[key:&nbsp;string]:&nbsp;any} | 是 | want相关参数。 |
M
m00512953 已提交
282 283 284

**返回值:**

Z
zhongjianfei 已提交
285 286
| 类型 | 说明 |
| -------- | -------- |
M
m00512953 已提交
287
| [AbilityConstant.OnSaveResult](js-apis-app-ability-abilityConstant.md#abilityconstantonsaveresult) | 是否同意保存当前UIAbility的状态。 |
M
m00512953 已提交
288 289 290 291

**示例:**

  ```ts
M
mingxihua 已提交
292
import AbilityConstant from '@ohos.app.ability.AbilityConstant';
M
m00512953 已提交
293

Z
zhongjianfei 已提交
294
class MyUIAbility extends UIAbility {
M
m00512953 已提交
295 296
    onSaveState(reason, wantParam) {
        console.log('onSaveState');
M
mingxihua 已提交
297
        wantParam['myData'] = 'my1234567';
M
m00512953 已提交
298
        return AbilityConstant.OnSaveResult.RECOVERY_AGREE;
M
m00512953 已提交
299 300 301 302
    }
}
  ```

X
xieqiongyang 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
## UIAbility.onShare<sup>10+</sup>

onShare(wantParam:{ [key: string]: Object }): void;

ability分享数据。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| wantParam | {[key:&nbsp;string]:&nbsp;Object} | 是 | want相关参数。 |

**示例:**
    
  ```ts
import AbilityConstant from '@ohos.app.ability.AbilityConstant';
class MyUIAbility extends UIAbility {
    onShare(wantParams) {
        console.log('onShare');
        wantParams['ohos.extra.param.key.contentTitle'] = {title: "W3"};
        wantParams['ohos.extra.param.key.shareAbstract'] = {abstract: "communication for huawei employee"};
        wantParams['ohos.extra.param.key.shareUrl'] = {url: "w3.huawei.com"};
    }
}
  ```
M
m00512953 已提交
330 331 332 333 334 335 336 337


## Caller

通用组件Caller通信客户端调用接口, 用来向通用组件服务端发送约定数据。

## Caller.call

D
dy_study 已提交
338
call(method: string, data: rpc.Parcelable): Promise&lt;void&gt;;
M
m00512953 已提交
339 340 341

向通用组件服务端发送约定序列化数据。

M
m00512953 已提交
342
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
343 344 345

**参数:**

Z
zhongjianfei 已提交
346 347 348
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 约定的服务端注册事件字符串。 |
D
dy_study 已提交
349
| data | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 是 | 由开发者实现的Parcelable可序列化数据。 |
M
m00512953 已提交
350 351 352

**返回值:**

Z
zhongjianfei 已提交
353 354 355
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;void&gt; | Promise形式返回应答。 |
M
m00512953 已提交
356 357 358 359 360

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
D
merge  
donglin 已提交
361
| 401 | If the input parameter is not valid parameter. |
D
donglin 已提交
362 363

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
364 365 366 367

**示例:**
    
  ```ts
D
dy_study 已提交
368
  class MyMessageAble{ // 自定义的Parcelable数据结构
M
mingxihua 已提交
369 370
    name:''
    str:''
M
m00512953 已提交
371 372 373 374 375
    num: 1
    constructor(name, str) {
      this.name = name;
      this.str = str;
    }
D
dy_study 已提交
376 377 378
    marshalling(messageSequence) {
      messageSequence.writeInt(this.num);
      messageSequence.writeString(this.str);
M
mingxihua 已提交
379
      console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
380 381
      return true;
    }
D
dy_study 已提交
382 383 384
    unmarshalling(messageSequence) {
      this.num = messageSequence.readInt();
      this.str = messageSequence.readString();
M
mingxihua 已提交
385
      console.log('MyMessageAble unmarshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
386 387 388
      return true;
    }
  };
M
mingxihua 已提交
389 390
  let method = 'call_Function'; // 约定的通知消息字符串
  let caller;
Z
zhongjianfei 已提交
391
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
392
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
393
      this.context.startAbilityByCall({
M
mingxihua 已提交
394 395 396
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
397 398
      }).then((obj) => {
        caller = obj;
399
        let msg = new MyMessageAble('msg', 'world'); // 参考Parcelable数据定义
M
m00512953 已提交
400 401 402 403 404
        caller.call(method, msg)
          .then(() => {
            console.log('Caller call() called');
          })
          .catch((callErr) => {
M
mingxihua 已提交
405
            console.log('Caller.call catch error, error.code: ${JSON.stringify(callErr.code)}, error.message: ${JSON.stringify(callErr.message)}');
M
m00512953 已提交
406 407
          });
      }).catch((err) => {
M
mingxihua 已提交
408
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
m00512953 已提交
409 410 411 412 413 414 415 416
      });
    }
  }
  ```


## Caller.callWithResult

D
dy_study 已提交
417
callWithResult(method: string, data: rpc.Parcelable): Promise&lt;rpc.MessageSequence&gt;;
M
m00512953 已提交
418 419 420

向通用组件服务端发送约定序列化数据, 并将服务端返回的约定序列化数据带回。

M
m00512953 已提交
421
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
422 423 424

**参数:**

Z
zhongjianfei 已提交
425 426 427
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 约定的服务端注册事件字符串。 |
D
dy_study 已提交
428
| data | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 是 | 由开发者实现的Parcelable可序列化数据。 |
M
m00512953 已提交
429 430 431

**返回值:**

Z
zhongjianfei 已提交
432 433
| 类型 | 说明 |
| -------- | -------- |
D
dy_study 已提交
434
| Promise&lt;[rpc.MessageSequence](js-apis-rpc.md#messagesequence9)&gt; | Promise形式返回通用组件服务端应答数据。 |
M
m00512953 已提交
435 436 437 438 439

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
D
merge  
donglin 已提交
440
| 401 | If the input parameter is not valid parameter. |
D
donglin 已提交
441 442

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
443 444 445 446 447

**示例:**

  ```ts
  class MyMessageAble{
M
mingxihua 已提交
448 449
    name:''
    str:''
M
m00512953 已提交
450 451 452 453 454
    num: 1
    constructor(name, str) {
      this.name = name;
      this.str = str;
    }
D
dy_study 已提交
455 456 457
    marshalling(messageSequence) {
      messageSequence.writeInt(this.num);
      messageSequence.writeString(this.str);
M
mingxihua 已提交
458
      console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
459 460
      return true;
    }
D
dy_study 已提交
461 462 463
    unmarshalling(messageSequence) {
      this.num = messageSequence.readInt();
      this.str = messageSequence.readString();
M
mingxihua 已提交
464
      console.log('MyMessageAble unmarshalling num[${this.num] str[${this.str}]');
M
m00512953 已提交
465 466 467
      return true;
    }
  };
M
mingxihua 已提交
468 469
  let method = 'call_Function';
  let caller;
Z
zhongjianfei 已提交
470
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
471
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
472
      this.context.startAbilityByCall({
M
mingxihua 已提交
473 474 475
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
476 477
      }).then((obj) => {
        caller = obj;
M
mingxihua 已提交
478
        let msg = new MyMessageAble(1, 'world');
M
m00512953 已提交
479 480 481
        caller.callWithResult(method, msg)
          .then((data) => {
            console.log('Caller callWithResult() called');
M
mingxihua 已提交
482
            let retmsg = new MyMessageAble(0, '');
D
dy_study 已提交
483
            data.readParcelable(retmsg);
M
m00512953 已提交
484 485
          })
          .catch((callErr) => {
M
mingxihua 已提交
486
            console.log('Caller.callWithResult catch error, error.code: ${JSON.stringify(callErr.code)}, error.message: ${JSON.stringify(callErr.message)}');
M
m00512953 已提交
487 488
          });
      }).catch((err) => {
M
mingxihua 已提交
489
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
m00512953 已提交
490 491 492 493 494 495 496 497 498 499 500 501
      });
    }
  }
  ```


## Caller.release

release(): void;

主动释放通用组件服务端的通信接口。

M
m00512953 已提交
502
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 401 | Invalid input parameter. |
| 16200001 | Caller released. The caller has been released. |
| 16200002 | Callee invalid. The callee does not exist. |
| 16000050 | Internal Error. |

**示例:**
    
  ```ts
M
mingxihua 已提交
516
  let caller;
Z
zhongjianfei 已提交
517
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
518
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
519
      this.context.startAbilityByCall({
M
mingxihua 已提交
520 521 522
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
523 524 525 526 527
      }).then((obj) => {
        caller = obj;
        try {
          caller.release();
        } catch (releaseErr) {
M
mingxihua 已提交
528
          console.log('Caller.release catch error, error.code: ${JSON.stringify(releaseErr.code)}, error.message: ${JSON.stringify(releaseErr.message)}');
M
m00512953 已提交
529 530
        }
      }).catch((err) => {
M
mingxihua 已提交
531
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
m00512953 已提交
532 533 534 535 536
      });
    }
  }
  ```

D
ability  
donglin 已提交
537 538
## Caller.onRelease

M
mingxihua 已提交
539
 onRelease(callback: OnReleaseCallback): void;
D
ability  
donglin 已提交
540 541 542

注册通用组件服务端Stub(桩)断开监听通知。

M
m00512953 已提交
543
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
D
ability  
donglin 已提交
544 545 546

**参数:**

Z
zhongjianfei 已提交
547 548
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
M
mingxihua 已提交
549
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回onRelease回调结果。 |
D
ability  
donglin 已提交
550 551 552 553

**示例:**
    
  ```ts
M
mingxihua 已提交
554
  let caller;
Z
zhongjianfei 已提交
555
  export default class MainUIAbility extends UIAbility {
D
ability  
donglin 已提交
556
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
557
      this.context.startAbilityByCall({
M
mingxihua 已提交
558 559 560
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
D
ability  
donglin 已提交
561 562 563 564
      }).then((obj) => {
          caller = obj;
          try {
            caller.onRelease((str) => {
M
mingxihua 已提交
565
                console.log(' Caller OnRelease CallBack is called ${str}');
D
ability  
donglin 已提交
566 567
            });
          } catch (error) {
M
mingxihua 已提交
568
            console.log('Caller.onRelease catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
D
ability  
donglin 已提交
569 570
          }
      }).catch((err) => {
M
mingxihua 已提交
571
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
D
ability  
donglin 已提交
572 573 574 575
      });
    }
  }
  ```
M
m00512953 已提交
576 577 578

## Caller.on

M
mingxihua 已提交
579
 on(type: 'release', callback: OnReleaseCallback): void;
M
m00512953 已提交
580 581 582

注册通用组件服务端Stub(桩)断开监听通知。

M
m00512953 已提交
583
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
584 585 586

**参数:**

Z
zhongjianfei 已提交
587 588 589
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |
M
mingxihua 已提交
590
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回onRelease回调结果。 |
M
m00512953 已提交
591 592 593 594 595

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
D
merge  
donglin 已提交
596
| 401 | If the input parameter is not valid parameter. |
D
donglin 已提交
597 598

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
599 600 601 602

**示例:**
    
  ```ts
M
mingxihua 已提交
603
  let caller;
Z
zhongjianfei 已提交
604
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
605
    onWindowStageCreate(windowStage) {
M
mingxihua 已提交
606
      this.context.startAbilityByCall({
M
mingxihua 已提交
607 608 609
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
m00512953 已提交
610 611 612
      }).then((obj) => {
          caller = obj;
          try {
M
mingxihua 已提交
613
            caller.on('release', (str) => {
M
mingxihua 已提交
614
                console.log(' Caller OnRelease CallBack is called ${str}');
M
m00512953 已提交
615 616
            });
          } catch (error) {
M
mingxihua 已提交
617
            console.log('Caller.on catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
M
m00512953 已提交
618 619
          }
      }).catch((err) => {
M
mingxihua 已提交
620
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
m00512953 已提交
621 622 623 624 625
      });
    }
  }
  ```

M
mingxihua 已提交
626 627
## Caller.off

M
mingxihua 已提交
628
off(type: 'release', callback: OnReleaseCallback): void;
M
mingxihua 已提交
629 630 631 632 633 634 635 636 637 638

取消注册通用组件服务端Stub(桩)断开监听通知。预留能力,当前暂未支持。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |
M
mingxihua 已提交
639
| callback | [OnReleaseCallback](#onreleasecallback) | 是 | 返回off回调结果。 |
M
mingxihua 已提交
640 641 642 643 644 645 646 647 648 649 650

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 401 | If the input parameter is not valid parameter. |
其他ID见[元能力子系统错误码](../errorcodes/errorcode-ability.md)

**示例:**
    
  ```ts
M
mingxihua 已提交
651
  let caller;
M
mingxihua 已提交
652 653 654
  export default class MainUIAbility extends UIAbility {
    onWindowStageCreate(windowStage) {
      this.context.startAbilityByCall({
M
mingxihua 已提交
655 656 657
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
mingxihua 已提交
658 659 660 661
      }).then((obj) => {
          caller = obj;
          try {
            let onReleaseCallBack = (str) => {
M
mingxihua 已提交
662
                console.log(' Caller OnRelease CallBack is called ${str}');
M
mingxihua 已提交
663
            };
M
mingxihua 已提交
664 665
            caller.on('release', onReleaseCallBack);
            caller.off('release', onReleaseCallBack);
M
mingxihua 已提交
666
          } catch (error) {
M
mingxihua 已提交
667
            console.log('Caller.on or Caller.off catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
M
mingxihua 已提交
668 669
          }
      }).catch((err) => {
M
mingxihua 已提交
670
        console.log('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
mingxihua 已提交
671 672 673 674 675 676 677
      });
    }
  }
  ```

## Caller.off

M
mingxihua 已提交
678
off(type: 'release'): void;
M
mingxihua 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699

取消注册通用组件服务端Stub(桩)断开监听通知。预留能力,当前暂未支持。

**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| type | string | 是 | 监听releaseCall事件,固定为'release'。 |

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
| 401 | If the input parameter is not valid parameter. |
其他ID见[元能力子系统错误码](../errorcodes/errorcode-ability.md)

**示例:**
    
  ```ts
M
mingxihua 已提交
700
  let caller;
M
mingxihua 已提交
701 702 703
  export default class MainUIAbility extends UIAbility {
    onWindowStageCreate(windowStage) {
      this.context.startAbilityByCall({
M
mingxihua 已提交
704 705 706
        bundleName: 'com.example.myservice',
        abilityName: 'MainUIAbility',
        deviceId: ''
M
mingxihua 已提交
707 708 709 710
      }).then((obj) => {
          caller = obj;
          try {
            let onReleaseCallBack = (str) => {
M
mingxihua 已提交
711
                console.log(' Caller OnRelease CallBack is called ${str}');
M
mingxihua 已提交
712
            };
M
mingxihua 已提交
713 714
            caller.on('release', onReleaseCallBack);
            caller.off('release');
M
mingxihua 已提交
715
          } catch (error) {  
M
mingxihua 已提交
716
            console.error('Caller.on or Caller.off catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
M
mingxihua 已提交
717 718
          }
      }).catch((err) => {
M
mingxihua 已提交
719
        console.error('Caller GetCaller error, error.code: ${JSON.stringify(err.code)}, error.message: ${JSON.stringify(err.message)}');
M
mingxihua 已提交
720 721 722 723
      });
    }
  }
  ```
M
m00512953 已提交
724 725 726 727 728 729 730

## Callee

通用组件服务端注册和解除客户端caller通知送信的callback接口。

## Callee.on

D
merge  
donglin 已提交
731
on(method: string, callback: CalleeCallback): void;
M
m00512953 已提交
732 733 734

通用组件服务端注册消息通知callback。

M
m00512953 已提交
735
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
736 737 738

**参数:**

Z
zhongjianfei 已提交
739 740 741
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 与客户端约定的通知消息字符串。 |
D
dy_study 已提交
742
| callback | [CalleeCallback](#calleecallback) | 是 | 一个[rpc.MessageSequence](js-apis-rpc.md#messagesequence9)类型入参的js通知同步回调函数,&nbsp;回调函数至少要返回一个空的[rpc.Parcelable](js-apis-rpc.md#parcelable9)数据对象,&nbsp;其他视为函数执行错误。 |
M
m00512953 已提交
743 744 745 746 747

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
D
merge  
donglin 已提交
748
| 401 | If the input parameter is not valid parameter. |
D
donglin 已提交
749 750

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
751 752 753 754 755

**示例:**

  ```ts
  class MyMessageAble{
M
mingxihua 已提交
756 757
      name:''
      str:''
M
m00512953 已提交
758 759 760 761 762
      num: 1
      constructor(name, str) {
        this.name = name;
        this.str = str;
      }
D
dy_study 已提交
763 764 765
      marshalling(messageSequence) {
          messageSequence.writeInt(this.num);
          messageSequence.writeString(this.str);
M
mingxihua 已提交
766
          console.log('MyMessageAble marshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
767 768
          return true;
      }
D
dy_study 已提交
769 770 771
      unmarshalling(messageSequence) {
          this.num = messageSequence.readInt();
          this.str = messageSequence.readString();
M
mingxihua 已提交
772
          console.log('MyMessageAble unmarshalling num[${this.num}] str[${this.str}]');
M
m00512953 已提交
773 774 775
          return true;
      }
  };
M
mingxihua 已提交
776
  let method = 'call_Function';
M
m00512953 已提交
777
  function funcCallBack(pdata) {
M
mingxihua 已提交
778
      console.log('Callee funcCallBack is called ${pdata}');
M
mingxihua 已提交
779
      let msg = new MyMessageAble('test', '');
D
dy_study 已提交
780
      pdata.readParcelable(msg);
M
mingxihua 已提交
781
      return new MyMessageAble('test1', 'Callee test');
M
m00512953 已提交
782
  }
Z
zhongjianfei 已提交
783
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
784 785 786 787 788
    onCreate(want, launchParam) {
      console.log('Callee onCreate is called');
      try {
        this.callee.on(method, funcCallBack);
      } catch (error) {
M
mingxihua 已提交
789
        console.log('Callee.on catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
M
m00512953 已提交
790 791 792 793 794 795 796 797 798 799 800
      }
    }
  }
  ```

## Callee.off

off(method: string): void;

解除通用组件服务端注册消息通知callback。

M
m00512953 已提交
801
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
802 803 804

**参数:**

Z
zhongjianfei 已提交
805 806 807
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| method | string | 是 | 已注册的通知事件字符串。 |
M
m00512953 已提交
808 809 810 811 812

**错误码:**

| 错误码ID | 错误信息 |
| ------- | -------------------------------- |
D
merge  
donglin 已提交
813
| 401 | If the input parameter is not valid parameter. |
D
donglin 已提交
814 815

以上错误码详细介绍请参考[errcode-ability](../errorcodes/errorcode-ability.md)
M
m00512953 已提交
816 817 818 819 820


**示例:**
    
  ```ts
M
mingxihua 已提交
821
  let method = 'call_Function';
Z
zhongjianfei 已提交
822
  export default class MainUIAbility extends UIAbility {
M
m00512953 已提交
823 824 825 826 827
    onCreate(want, launchParam) {
      console.log('Callee onCreate is called');
      try {
        this.callee.off(method);
      } catch (error) {
M
mingxihua 已提交
828
        console.log('Callee.off catch error, error.code: ${JSON.stringify(error.code)}, error.message: ${JSON.stringify(error.message)}');
M
m00512953 已提交
829 830 831 832 833 834 835 836 837
      }
    }
  }
  ```

## OnReleaseCallback

(msg: string): void;

M
m00512953 已提交
838
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
839

Z
zhongjianfei 已提交
840
| 名称 | 可读 | 可写 | 类型 | 说明 |
M
m00512953 已提交
841
| -------- | -------- | -------- | -------- | -------- |
Z
zhongjianfei 已提交
842
| (msg: string) | 是 | 否 | function | 调用者注册的侦听器函数接口的原型。 |
M
m00512953 已提交
843 844 845

## CalleeCallback

D
dy_study 已提交
846
(indata: rpc.MessageSequence): rpc.Parcelable;
M
m00512953 已提交
847

M
m00512953 已提交
848
**系统能力**:SystemCapability.Ability.AbilityRuntime.AbilityCore
M
m00512953 已提交
849

Z
zhongjianfei 已提交
850
| 名称 | 可读 | 可写 | 类型 | 说明 |
M
m00512953 已提交
851
| -------- | -------- | -------- | -------- | -------- |
D
dy_study 已提交
852
| (indata: [rpc.MessageSequence](js-apis-rpc.md#messagesequence9)) | 是 | 否 | [rpc.Parcelable](js-apis-rpc.md#parcelable9) | 被调用方注册的消息侦听器函数接口的原型。 |