Signed-off-by: zero-cyc <chenlien@huawei.com>
Change-Id: I97bfd35ad96d9060c0d638bd247d1a7dffa110de
This commit is contained in:
zero-cyc 2022-03-16 20:12:11 +08:00
parent cc5c531628
commit 815e0cd71e
2 changed files with 30 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@ -101,6 +101,16 @@ declare namespace wantAgent {
function getWantAgent(info: WantAgentInfo, callback: AsyncCallback<WantAgent>): void;
function getWantAgent(info: WantAgentInfo): Promise<WantAgent>;
/**
* Obtains the {@link OperationType} of a {@link WantAgent}.
*
* @since 9
* @param agent Indicates the {@link WantAgent} whose {@link OperationType} is to be obtained.
* @return Returns the {@link OperationType} of the {@link WantAgent}.
*/
function getOperationType(agent: WantAgent, callback: AsyncCallback<number>): void;
function getOperationType(agent: WantAgent): Promise<number>;
/**
* Enumerates flags for using a WantAgent.
*/
@ -226,4 +236,4 @@ declare namespace wantAgent {
*/
export type WantAgent = object;
export default wantAgent;
export default wantAgent;

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@ -218,4 +218,21 @@ export interface CommonEventSubscriber {
* @return Returns the commonEvent subscribe information
*/
getSubscribeInfo(): Promise<CommonEventSubscribeInfo>;
/**
* finish the current ordered common event.
*
* @since 9
* @param callback Indicate the callback function after the ordered common event is finished.
* @return -
*/
finishCommonEvent(callback: AsyncCallback<void>): void;
/**
* finish the current ordered common event.
*
* @since 9
* @return -
*/
finishCommonEvent(): Promise<void>;
}