js-apis-inner-commonEvent-commonEventSubscriber.md 23.8 KB
Newer Older
Z
zhuhan 已提交
1 2
# CommonEventSubscriber

3 4 5 6 7 8 9
> **说明:**
>
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 使用说明

在使用CommonEventSubscriber的功能前,需要通过CommonEvent.createSubscriber获取subscriber对象。
Z
zhuhan 已提交
10 11

```ts
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
import CommonEvent from '@ohos.commonEvent';
let subscriber; // 用于保存创建成功的订阅者对象,后续使用其完成订阅及退订的动作

// 订阅者信息
let subscribeInfo = {
	events: ["event"]
};

// 创建订阅者回调
function createCB(err, commonEventSubscriber) {
    if (err.code) {
        console.error(`createSubscriber failed, code is ${err.code}`);
    } else {
        console.info("createSubscriber");
        subscriber = commonEventSubscriber;
    }
}

// 创建订阅者
CommonEvent.createSubscriber(subscribeInfo, createCB);
Z
zhuhan 已提交
32 33
```

34 35 36 37
## getCode

getCode(callback: AsyncCallback\<number>): void

Z
zhuhan 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
以回调形式获取公共事件代码。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                   | 必填 | 说明               |
| -------- | ---------------------- | ---- | ------------------ |
| callback | AsyncCallback\<number\> | 是   | 公共事件代码。 |

**示例:**

```ts
//获取有序公共事件代码回调
function getCodeCB(err, code) {
    if (err.code) {
        console.error(`getCode failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("getCode " + JSON.stringify(code));
    }
}
subscriber.getCode(getCodeCB);
```

## getCode

64
getCode(): Promise\<number>
Z
zhuhan 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

以Promise形式获取公共事件代码。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<number> | 公共事件代码。 |

**示例:**

```ts
subscriber.getCode().then((code) => {
    console.info("getCode " + JSON.stringify(code));
}).catch((err) => {
    console.error(`getCode failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
## getCodeSync

getCodeSync(): number

getCode的同步接口

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| number | 公共事件代码。 |

**示例:**

```ts
let code = subscriber.getCodeSync();
console.info("getCodeSync " + JSON.stringify(code));
```

Z
zhuhan 已提交
107 108
## setCode

109
setCode(code: number, callback: AsyncCallback\<void>): void
Z
zhuhan 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

以回调形式设置公共事件的代码。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                 | 必填 | 说明                   |
| -------- | -------------------- | ---- | ---------------------- |
| code     | number               | 是   | 公共事件的代码。   |
| callback | AsyncCallback\<void> | 是   | 表示被指定的回调方法。 |

**示例:**

```ts
//设置有序公共事件的代码回调
function setCodeCB(err) {
    if (err.code) {
        console.error(`setCode failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("setCode");
    }
}
subscriber.setCode(1, setCodeCB);
```

## setCode

138
setCode(code: number): Promise\<void>
Z
zhuhan 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

以Promise形式设置公共事件的代码。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| code   | number | 是   | 公共事件的代码。 |

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise的结果。 |

**示例:**

```ts
subscriber.setCode(1).then(() => {
    console.info("setCode");
}).catch((err) => {
    console.error(`setCode failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
## setCodeSync

setCodeSync(code: number): void

setCode的同步接口

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| code   | number | 是   | 公共事件的代码。 |


**示例:**

```ts

try {
    subscriber.setCodeSync(1);
} catch (err) {
    console.error(`setCodeSync failed, code is ${err.code}, message is ${err.message}`);
}
```

Z
zhuhan 已提交
192 193
## getData

194
getData(callback: AsyncCallback\<string>): void
Z
zhuhan 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221

以回调形式获取公共事件的数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                   | 必填 | 说明                 |
| -------- | ---------------------- | ---- | -------------------- |
| callback | AsyncCallback\<string> | 是   | 公共事件的数据。 |

**示例:**

```ts
//获取有序公共事件代码数据回调
function getDataCB(err, data) {
    if (err.code) {
        console.error(`getData failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("getData " + JSON.stringify(data));
    }
}
subscriber.getData(getDataCB);
```

## getData

222
getData(): Promise\<string>
Z
zhuhan 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

以Promise形式获取公共事件的数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明               |
| ---------------- | ------------------ |
| Promise\<string> | 公共事件的数据。 |

**示例:**

```ts
subscriber.getData().then((data) => {
    console.info("getData " + JSON.stringify(data));
}).catch((err) => {
    console.error(`getData failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
## getDataSync

getDataSync(): string

getData的同步接口

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明               |
| ---------------- | ------------------ |
| string | 公共事件的数据。 |

**示例:**

```ts
let data = subscriber.getDataSync();
console.info("getDataSync " + JSON.stringify(data));
```

Z
zhuhan 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
## setData

setData(data: string, callback: AsyncCallback\<void>): void

以回调形式设置公共事件的数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                 | 必填 | 说明                 |
| -------- | -------------------- | ---- | -------------------- |
| data     | string               | 是   | 公共事件的数据。   |
| callback | AsyncCallback\<void> | 是   | 表示被指定的回调方法。 |

**示例:**

```ts
//设置有序公共事件的结果数据回调
function setDataCB(err) {
    if (err.code) {
        console.error(`setCode failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("setData");
    }
}
subscriber.setData("publish_data_changed", setDataCB);
```

## setData

296
setData(data: string): Promise\<void>
Z
zhuhan 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323

以Promise形式设置公共事件的果数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| data   | string | 是   | 公共事件的数据。 |

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise的结果。 |

**示例:**

```ts
subscriber.setData("publish_data_changed").then(() => {
    console.info("setData");
}).catch((err) => {
    console.error(`setCode failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
## setDataSync
setDataSync(data: string): void

setData的同步接口。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| data   | string | 是   | 公共事件的数据。 |

**示例:**

```ts
try {
    subscriber.setDataSync("publish_data_changed");
} catch (err) {
    console.error(`setDataSync failed, code is ${err.code}, message is ${err.message}`);
}
```

Z
zhuhan 已提交
347 348
## setCodeAndData

349
setCodeAndData(code: number, data: string, callback:AsyncCallback\<void>): void
Z
zhuhan 已提交
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

以回调形式设置公共事件代码和数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                 | 必填 | 说明                   |
| -------- | -------------------- | ---- | ---------------------- |
| code     | number               | 是   | 公共事件的代码。   |
| data     | string               | 是   | 公共事件的数据。   |
| callback | AsyncCallback\<void> | 是   | 表示被指定的回调方法。 |

**示例:**

```ts
//设置有序公共事件的代码和数据回调
function setCodeDataCB(err) {
    if (err.code) {
        console.error(`setCodeAndData failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("setCodeDataCallback");
    }
}
subscriber.setCodeAndData(1, "publish_data_changed", setCodeDataCB);
```

## setCodeAndData

379
setCodeAndData(code: number, data: string): Promise\<void>
Z
zhuhan 已提交
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

以Promise形式设置公共事件的代码和数据。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| code   | number | 是   | 公共事件的代码。 |
| data   | string | 是   | 公共事件的数据。 |

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise。 |

**示例:**

```ts
subscriber.setCodeAndData(1, "publish_data_changed").then(() => {
    console.info("setCodeAndData");
}).catch((err) => {
    console.error(`setCodeAndData failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
## setCodeAndDataSync

setCodeAndData的同步接口。

setCodeAndDataSync(code: number, data: string): void

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| code   | number | 是   | 公共事件的代码。 |
| data   | string | 是   | 公共事件的数据。 |

**示例:**

```ts
try {
    subscriber.setCodeAndDataSync(1, "publish_data_changed");
} catch (err) {
    console.error(`setCodeAndData failed, code is ${err.code}, message is ${err.message}`);
}

```
Z
zhuhan 已提交
433 434
## isOrderedCommonEvent

435
isOrderedCommonEvent(callback: AsyncCallback\<boolean>): void
Z
zhuhan 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464

以回调形式查询当前公共事件的是否为有序公共事件。

返回true代表是有序公共事件,false代表不是有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                    | 必填 | 说明                               |
| -------- | ----------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 当前公共事件的是否为有序公共事件。 |

**示例:**

```ts
//获取当前公共事件是否为有序事件的回调
function isOrderedCB(err, isOrdered) {
    if (err.code) {
        console.error(`isOrderedCommonEvent failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("isOrdered " + JSON.stringify(isOrdered));
    }
}
subscriber.isOrderedCommonEvent(isOrderedCB);
```

## isOrderedCommonEvent

465
isOrderedCommonEvent(): Promise\<boolean>
Z
zhuhan 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

以Promise形式查询当前公共事件的是否为有序公共事件。

返回true代表是有序公共事件,false代表不是有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                             |
| ----------------- | -------------------------------- |
| Promise\<boolean> | 当前公共事件的是否为有序公共事件。 |

**示例:**

```ts
subscriber.isOrderedCommonEvent().then((isOrdered) => {
    console.info("isOrdered " + JSON.stringify(isOrdered));
}).catch((err) => {
    console.error(`isOrdered failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
## isOrderedCommonEventSync

isOrderedCommonEventSync(): boolean

isOrderedCommonEvent的同步接口

返回true代表是有序公共事件,false代表不是有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                             |
| ----------------- | -------------------------------- |
| boolean | 当前公共事件的是否为有序公共事件。 |

**示例:**

```ts
let isOrdered  = subscriber.isOrderedCommonEventSync();
console.info("isOrdered " + JSON.stringify(isOrdered));
```

Z
zhuhan 已提交
512 513
## isStickyCommonEvent

514
isStickyCommonEvent(callback: AsyncCallback\<boolean>): void
Z
zhuhan 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543

以回调形式检查当前公共事件是否为一个粘性事件。

返回true代表是粘性公共事件,false代表不是粘性公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                    | 必填 | 说明                               |
| -------- | ----------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 当前公共事件的是否为粘性公共事件。 |

**示例:**

```ts
//获取当前公共事件是否为粘性事件的回调
function isStickyCB(err, isSticky) {
    if (err.code) {
        console.error(`isStickyCommonEvent failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("isSticky " + JSON.stringify(isSticky));
    }
}
subscriber.isStickyCommonEvent(isStickyCB);
```

## isStickyCommonEvent

544
isStickyCommonEvent(): Promise\<boolean>
Z
zhuhan 已提交
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567

以Promise形式检查当前公共事件是否为一个粘性事件。

返回true代表是粘性公共事件,false代表不是粘性公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                             |
| ----------------- | -------------------------------- |
| Promise\<boolean> | 当前公共事件的是否为粘性公共事件。 |

**示例:**

```ts
subscriber.isStickyCommonEvent().then((isSticky) => {
    console.info("isSticky " + JSON.stringify(isSticky));
}).catch((err) => {
    console.error(`isSticky failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
## isStickyCommonEventSync

isStickyCommonEventSync(): boolean

isStickyCommonEvent的同步接口。

返回true代表是粘性公共事件,false代表不是粘性公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                             |
| ----------------- | -------------------------------- |
| boolean | 当前公共事件的是否为粘性公共事件。 |

**示例:**

```ts
let isSticky  = subscriber.isStickyCommonEventSync();
console.info("isSticky " + JSON.stringify(isSticky));
```

Z
zhuhan 已提交
591 592
## abortCommonEvent

593
abortCommonEvent(callback: AsyncCallback\<void>): void
Z
zhuhan 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620

以回调形式取消当前的有序公共事件,取消后,有序公共事件不再向下一个订阅者传递。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                 | 必填 | 说明                 |
| -------- | -------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void> | 是   | 取消当前的有序公共事件。 |

**示例:**

```ts
//取消当前有序公共事件的回调
function abortCB(err) {
    if (err.code) {
		console.error(`abortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("abortCommonEvent");
    }
}
subscriber.abortCommonEvent(abortCB);
```

## abortCommonEvent

621
abortCommonEvent(): Promise\<void>
Z
zhuhan 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642

以Promise形式取消当前的有序公共事件,取消后,公共事件不再向下一个订阅者传递。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise的结果。 |

**示例:**

```ts
subscriber.abortCommonEvent().then(() => {
    console.info("abortCommonEvent");
}).catch((err) => {
    console.error(`abortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
643 644 645 646 647 648 649 650 651 652 653 654 655 656
## abortCommonEventSync

abortCommonEventSync(): void

abortCommonEvent的同步接口

**系统能力**`SystemCapability.Notification.CommonEvent`

**示例:**

```ts
subscriber.abortCommonEventSync();
```

Z
zhuhan 已提交
657 658
## clearAbortCommonEvent

659
clearAbortCommonEvent(callback: AsyncCallback\<void>): void
Z
zhuhan 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686

以回调形式清除当前有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                 | 必填 | 说明                 |
| -------- | -------------------- | ---- | -------------------- |
| callback | AsyncCallback\<void> | 是   | 表示被指定的回调方法。 |

**示例:**

```ts
//清除当前公共事件取消状态的回调
function clearAbortCB(err) {
    if (err.code) {
        console.error(`clearAbortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("clearAbortCommonEvent");
    }
}
subscriber.clearAbortCommonEvent(clearAbortCB);
```

## clearAbortCommonEvent

687
clearAbortCommonEvent(): Promise\<void>
Z
zhuhan 已提交
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708

以Promise形式清除当前有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise的结果。 |

**示例:**

```ts
subscriber.clearAbortCommonEvent().then(() => {
    console.info("clearAbortCommonEvent");
}).catch((err) => {
    console.error(`clearAbortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
709 710 711 712 713 714 715 716 717 718 719 720 721 722
## clearAbortCommonEventSync

clearAbortCommonEventSync(): void

clearAbortCommonEvent的同步接口

**系统能力**`SystemCapability.Notification.CommonEvent`

**示例:**

```ts
subscriber.clearAbortCommonEventSync()
```

Z
zhuhan 已提交
723 724
## getAbortCommonEvent

725
getAbortCommonEvent(callback: AsyncCallback\<boolean>): void
Z
zhuhan 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752

以回调形式获取当前有序公共事件是否取消的状态。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                    | 必填 | 说明                               |
| -------- | ----------------------- | ---- | ---------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 表示当前有序公共事件是否取消的状态。 |

**示例:**

```ts
//获取当前有序公共事件是否取消的回调
function getAbortCB(err, abortEvent) {
    if (err.code) {
        console.error(`getAbortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("abortCommonEvent " + abortEvent)
    }
}
subscriber.getAbortCommonEvent(getAbortCB);
```

## getAbortCommonEvent

753
getAbortCommonEvent(): Promise\<boolean>
Z
zhuhan 已提交
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774

以Promise形式获取当前有序公共事件是否取消的状态。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                               |
| ----------------- | ---------------------------------- |
| Promise\<boolean> | 表示当前有序公共事件是否取消的状态。 |

**示例:**

```ts
subscriber.getAbortCommonEvent().then((abortEvent) => {
    console.info("abortCommonEvent " + JSON.stringify(abortEvent));
}).catch((err) => {
    console.error(`getAbortCommonEvent failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
## getAbortCommonEventSync

getAbortCommonEventSync(): boolean

getAbortCommonEvent的同步接口。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型              | 说明                               |
| ----------------- | ---------------------------------- |
| boolean | 表示当前有序公共事件是否取消的状态。 |

**示例:**

```ts
let abortEvent = subscriber.getAbortCommonEventSync();
console.info("getAbortCommonEventSync " + JSON.stringify(abortEvent));
```

Z
zhuhan 已提交
796 797
## getSubscribeInfo

798
getSubscribeInfo(callback: AsyncCallback\<CommonEventSubscribeInfo>): void
Z
zhuhan 已提交
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825

以回调形式获取订阅者的订阅信息。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                   |
| -------- | ------------------------------------------------------------ | ---- | ---------------------- |
| callback | AsyncCallback\<[CommonEventSubscribeInfo](./js-apis-inner-commonEvent-commonEventSubscribeInfo.md)> | 是   | 表示订阅者的订阅信息。 |

**示例:**

```ts
//获取订阅者信息回调
function getCB(err, subscribeInfo) {
    if (err.code) {
        console.error(`getSubscribeInfo failed, code is ${err.code}, message is ${err.message}`);
    } else {
        console.info("subscribeInfo " + JSON.stringify(subscribeInfo));
    }
}
subscriber.getSubscribeInfo(getCB);
```

## getSubscribeInfo

826
getSubscribeInfo(): Promise\<CommonEventSubscribeInfo>
Z
zhuhan 已提交
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847

以Promise形式获取订阅者的订阅信息。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型                                                         | 说明                   |
| ------------------------------------------------------------ | ---------------------- |
| Promise\<[CommonEventSubscribeInfo](./js-apis-inner-commonEvent-commonEventSubscribeInfo.md)> | 表示订阅者的订阅信息。 |

**示例:**

```ts
subscriber.getSubscribeInfo().then((subscribeInfo) => {
    console.info("subscribeInfo " + JSON.stringify(subscribeInfo));
}).catch((err) => {
    console.error(`getSubscribeInfo failed, code is ${err.code}, message is ${err.message}`);
});
```

Z
zhuhan 已提交
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
## getSubscribeInfoSync

getSubscribeInfoSync(): CommonEventSubscribeInfo

getSubscribeInfo的同步接口。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型                                                         | 说明                   |
| ------------------------------------------------------------ | ---------------------- |
| [CommonEventSubscribeInfo](./js-apis-inner-commonEvent-commonEventSubscribeInfo.md) | 表示订阅者的订阅信息。 |

**示例:**

```ts
let subscribeInfo = subscriber.getSubscribeInfoSync();
console.info("subscribeInfo " + JSON.stringify(subscribeInfo));
```

Z
zhuhan 已提交
869 870
## finishCommonEvent<sup>9+</sup>

871
finishCommonEvent(callback: AsyncCallback\<void>): void
Z
zhuhan 已提交
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889

以回调形式结束当前有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**参数:**

| 参数名   | 类型                  | 必填 | 说明                              |
| -------- | -------------------- | ---- | -------------------------------- |
| callback | AsyncCallback\<void> | 是   | 表示有序公共事件结束后的回调函数。 |

**示例:**

```ts
//结束当前有序公共事件的回调
function finishCB(err) {
  if (err.code) {
    console.error(`finishCommonEvent failed, code is ${err.code}, message is ${err.message}`);
890
  } else {
Z
zhuhan 已提交
891
    console.info("FinishCommonEvent");
892
  }
Z
zhuhan 已提交
893 894 895 896 897 898 899
}

subscriber.finishCommonEvent(finishCB);
```

## finishCommonEvent<sup>9+</sup>

900
finishCommonEvent(): Promise\<void>
Z
zhuhan 已提交
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920

以Promise形式结束当前有序公共事件。

**系统能力**`SystemCapability.Notification.CommonEvent`

**返回值:**

| 类型             | 说明                 |
| ---------------- | -------------------- |
| Promise\<void>   | 返回一个Promise的结果。 |

**示例:**

```ts
subscriber.finishCommonEvent().then(() => {
    console.info("FinishCommonEvent");
}).catch((err) => {
    console.error(`finishCommonEvent failed, code is ${err.code}, message is ${err.message}`);
});
```