mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-28 01:41:54 +00:00
c53271a638
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com> Change-Id: Iaabcd22fc9a409965c78c6d2fc813f64c9bc2c5e
142 lines
4.6 KiB
TypeScript
142 lines
4.6 KiB
TypeScript
/*
|
|
* Copyright (c) 2021 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.
|
|
*/
|
|
|
|
import { AsyncCallback } from './basic';
|
|
import { MissionInfo } from './application/MissionInfo';
|
|
import { MissionListener } from './application/MissionListener';
|
|
import { MissionSnapshot } from './application/MissionSnapshot';
|
|
|
|
/**
|
|
* This module provides the capability to manage abilities and obtaining system task information.
|
|
*
|
|
* @name missionManager
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @devices phone, tablet
|
|
* @permission N/A
|
|
* @systemapi hide for inner use.
|
|
*/
|
|
declare namespace missionManager {
|
|
/**
|
|
* Register the missionListener to ams.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return The index number of the MissionListener.
|
|
*/
|
|
function registerMissionListener(listener: MissionListener): number;
|
|
|
|
/**
|
|
* Unrgister the missionListener to ams.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function unregisterMissionListener(listenerId: number, callback: AsyncCallback<void>): void;
|
|
function unregisterMissionListener(listenerId: number): Promise<void>;
|
|
|
|
/**
|
|
* Get the missionInfo with the given missionId.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return the {@link MissionInfo} of the given id.
|
|
*/
|
|
function getMissionInfo(deviceId: string, missionId: number, callback: AsyncCallback<MissionInfo>): void;
|
|
function getMissionInfo(deviceId: string, missionId: number): Promise<MissionInfo>;
|
|
|
|
/**
|
|
* Get the missionInfo with the given missionId.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return The array of the {@link MissionInfo}.
|
|
*/
|
|
function getMissionInfos(deviceId: string, numMax: number, callback: AsyncCallback<Array<MissionInfo>>): void;
|
|
function getMissionInfos(deviceId: string, numMax: number): Promise<Array<MissionInfo>>;
|
|
|
|
/**
|
|
* Get the mission snapshot with the given missionId.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return The {@link MissionSnapshot} of the given id.
|
|
*/
|
|
function getMissionSnapShot(deviceId: string, missionId: number, callback: AsyncCallback<MissionSnapshot>): void;
|
|
function getMissionSnapShot(deviceId: string, missionId: number): Promise<MissionSnapshot>;
|
|
|
|
/**
|
|
* Lock the mission.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function lockMission(missionId: number, callback: AsyncCallback<void>): void;
|
|
function lockMission(missionId: number): Promise<void>;
|
|
|
|
/**
|
|
* Unlock the mission.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function unlockMission(missionId: number, callback: AsyncCallback<void>): void;
|
|
function unlockMission(missionId: number): Promise<void>;
|
|
|
|
/**
|
|
* Clear the given mission in the ability manager service.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function clearMission(missionId: number, callback: AsyncCallback<void>): void;
|
|
function clearMission(missionId: number): Promise<void>;
|
|
|
|
/**
|
|
* Clear all missions in the ability manager service.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function clearAllMissions(callback: AsyncCallback<void>): void;
|
|
function clearAllMissions(): Promise<void>;
|
|
|
|
/**
|
|
* Schedule the given mission to foreground.
|
|
*
|
|
* @devices phone, tablet, tv, wearable, car
|
|
* @since 8
|
|
* @sysCap AAFwk
|
|
* @return -
|
|
*/
|
|
function moveMissionToFront(missionId: number, callback: AsyncCallback<void>): void;
|
|
function moveMissionToFront(missionId: number): Promise<void>;
|
|
}
|
|
|
|
export default missionManager; |