2023-03-13 02:54:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023 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
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-06-28 15:24:36 +08:00
|
|
|
import type { AbilityResult } from '../ability/abilityResult';
|
|
|
|
import type { AsyncCallback } from '../@ohos.base';
|
2023-07-05 08:17:36 +00:00
|
|
|
import type { ConnectOptions } from '../ability/connectOptions';
|
2023-03-13 02:54:04 +00:00
|
|
|
import ExtensionContext from './ExtensionContext';
|
2023-06-28 15:24:36 +08:00
|
|
|
import type Want from '../@ohos.app.ability.Want';
|
|
|
|
import type StartOptions from '../@ohos.app.ability.StartOptions';
|
2023-03-13 02:54:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The context of UI extension. It allows access to UIExtension-specific resources.
|
|
|
|
*
|
|
|
|
* @extends ExtensionContext
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
export default class UIExtensionContext extends ExtensionContext {
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* UI extension uses this method to start a specific ability.If the caller application is in foreground,
|
|
|
|
* you can use this method to start ability; If the caller application is in the background,
|
|
|
|
* you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of startAbility.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000010 - The call with the continuation flag is forbidden.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbility(want: Want, callback: AsyncCallback<void>): void;
|
2023-03-13 02:54:04 +00:00
|
|
|
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* UI extension uses this method to start a specific ability.If the caller application is in foreground,
|
|
|
|
* you can use this method to start ability; If the caller application is in the background,
|
|
|
|
* you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { StartOptions } options - Indicates the start options.
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of startAbility.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbility(want: Want, options: StartOptions, callback: AsyncCallback<void>): void;
|
2023-03-13 02:54:04 +00:00
|
|
|
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* UI extension uses this method to start a specific ability.If the caller application is in foreground,
|
|
|
|
* you can use this method to start ability; If the caller application is in the background,
|
|
|
|
* you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { StartOptions } [options] - Indicates the start options.
|
|
|
|
* @returns { Promise<void> } The promise returned by the function.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000010 - The call with the continuation flag is forbidden.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbility(want: Want, options?: StartOptions): Promise<void>;
|
2023-03-13 02:54:04 +00:00
|
|
|
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* Starts an ability and returns the execution result when the ability is destroyed.
|
|
|
|
* If the caller application is in foreground, you can use this method to start ability; If the caller application
|
|
|
|
* is in the background, you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { AsyncCallback<AbilityResult> } callback - The callback is used to return the result of startAbility.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000010 - The call with the continuation flag is forbidden.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbilityForResult(want: Want, callback: AsyncCallback<AbilityResult>): void;
|
2023-03-13 02:54:04 +00:00
|
|
|
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* Starts an ability and returns the execution result when the ability is destroyed.
|
|
|
|
* If the caller application is in foreground, you can use this method to start ability; If the caller application
|
|
|
|
* is in the background, you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { StartOptions } options - Indicates the start options.
|
|
|
|
* @param { AsyncCallback<AbilityResult> } callback - The callback is used to return the result of startAbility.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbilityForResult(want: Want, options: StartOptions, callback: AsyncCallback<AbilityResult>): void;
|
2023-03-13 02:54:04 +00:00
|
|
|
|
2023-06-29 04:26:44 +00:00
|
|
|
/**
|
|
|
|
* Starts an ability and returns the execution result when the ability is destroyed.
|
|
|
|
* If the caller application is in foreground, you can use this method to start ability; If the caller application
|
|
|
|
* is in the background, you need to apply for permission:ohos.permission.START_ABILITIES_FROM_BACKGROUND.
|
|
|
|
* If the target ability is visible, you can start the target ability; If the target ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to start target invisible ability.
|
|
|
|
* If the target ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - Indicates the ability to start.
|
|
|
|
* @param { StartOptions } [options] - Indicates the start options.
|
|
|
|
* @returns { Promise<AbilityResult> } Returns the result of startAbility.
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
|
|
|
* @throws { BusinessError } 16000009 - An ability cannot be started or stopped in Wukong mode.
|
|
|
|
* @throws { BusinessError } 16000010 - The call with the continuation flag is forbidden.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000013 - The application is controlled by EDM.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
startAbilityForResult(want: Want, options?: StartOptions): Promise<AbilityResult>;
|
2023-07-05 08:17:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Connects the current ability to an service extension ability using the AbilityInfo.AbilityType.SERVICE template.
|
|
|
|
* If the target service extension ability is visible, you can connect the target service extension ability;
|
|
|
|
* If the target service extension ability is invisible,
|
|
|
|
* you need to apply for permission:ohos.permission.START_INVISIBLE_ABILITY to connect target invisible service extension ability.
|
|
|
|
* If the target service extension ability is in cross-device, you need to apply for permission:ohos.permission.DISTRIBUTED_DATASYNC.
|
|
|
|
*
|
|
|
|
* @param { Want } want - The element name of the service ability
|
|
|
|
* @param { ConnectOptions } options - The remote object instance
|
|
|
|
* @returns { number } Returns the number code of the ability connected
|
|
|
|
* @throws { BusinessError } 201 - The application does not have permission to call the interface.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000001 - The specified ability does not exist.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component.
|
|
|
|
* @throws { BusinessError } 16000005 - The specified process does not have the permission.
|
|
|
|
* @throws { BusinessError } 16000006 - Cross-user operations are not allowed.
|
|
|
|
* @throws { BusinessError } 16000008 - The crowdtesting application expires.
|
2023-08-21 11:08:59 +08:00
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
2023-07-05 08:17:36 +00:00
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16000053 - The ability is not on the top of the UI.
|
|
|
|
* @throws { BusinessError } 16000055 - Installation-free timed out.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
connectServiceExtensionAbility(want: Want, options: ConnectOptions): number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect an ability from a service extension, in contrast to {@link connectAbility}.
|
|
|
|
*
|
|
|
|
* @param { number } connection - The number code of the ability connected
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of disconnectAbility.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
2023-08-21 11:08:59 +08:00
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
2023-07-05 08:17:36 +00:00
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
disconnectServiceExtensionAbility(connection: number, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect an ability from a service extension, in contrast to {@link connectAbility}.
|
|
|
|
*
|
|
|
|
* @param { number } connection - The number code of the ability connected
|
|
|
|
* @returns { Promise<void> } The promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
2023-08-21 11:08:59 +08:00
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
2023-07-05 08:17:36 +00:00
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
disconnectServiceExtensionAbility(connection: number): Promise<void>;
|
2024-02-21 09:30:31 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Report to system when the extension is drawn completed.
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of startUIExtensionAbility.
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
reportDrawnCompleted(callback: AsyncCallback<void>): void;
|
2024-02-19 17:15:55 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the UI extension.
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of terminateSelf.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
terminateSelf(callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the UI extension.
|
|
|
|
*
|
|
|
|
* @returns { Promise<void> } The promise returned by the function.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
terminateSelf(): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the UI extension while returning the specified result code and data to the caller.
|
|
|
|
*
|
|
|
|
* @param { AbilityResult } parameter - Indicates the result to return.
|
|
|
|
* @param { AsyncCallback<void> } callback - The callback of terminateSelfWithResult.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
terminateSelfWithResult(parameter: AbilityResult, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the UI extension while returning the specified result code and data to the caller.
|
|
|
|
*
|
|
|
|
* @param { AbilityResult } parameter - Indicates the result to return.
|
|
|
|
* @returns { Promise<void> } The promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
terminateSelfWithResult(parameter: AbilityResult): Promise<void>;
|
2024-02-29 19:16:27 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Full-screen pop-us startup atomic service.
|
|
|
|
*
|
|
|
|
* @param { string } appId - The ID of the application to which this bundle belongs.
|
|
|
|
* @returns { Promise<AbilityResult> } Returns the result of openAtomicService.
|
|
|
|
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
|
|
|
|
* @throws { BusinessError } 16000002 - Incorrect ability type.
|
|
|
|
* @throws { BusinessError } 16000003 - The appId does not exist.
|
|
|
|
* @throws { BusinessError } 16000004 - Can not start invisible component
|
|
|
|
* @throws { BusinessError } 16000011 - The context does not exist.
|
|
|
|
* @throws { BusinessError } 16000012 - The application is controlled.
|
|
|
|
* @throws { BusinessError } 16000050 - Internal error.
|
|
|
|
* @throws { BusinessError } 16200001 - The caller has been released.
|
|
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
openAtomicService(appId: string): Promise<AbilityResult>;
|
2024-02-19 17:15:55 +08:00
|
|
|
}
|