1 Star 0 Fork 3.9K

Feng Lin/interface_sdk-js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
@ohos.resourceschedule.workScheduler.d.ts 17.45 KB
一键复制 编辑 原始数据 按行查看 历史
anchi 提交于 2024-07-05 11:45 +08:00 . api lint 告警清除
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
/*
* Copyright (c) 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
*
* 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.
*/
/**
* @file
* @kit BackgroundTasksKit
*/
import { AsyncCallback } from './@ohos.base';
/**
* Work scheduler interface.
*
* @namespace workScheduler
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
declare namespace workScheduler {
/**
* The info of work.
*
* @interface WorkInfo
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
export interface WorkInfo {
/**
* The id of the current work.
*
* @type { number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
workId: number;
/**
* The bundle name of the current work.
*
* @type { string }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
bundleName: string;
/**
* The ability name of the current work.
*
* @type { string }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
abilityName: string;
/**
* Whether the current work will be saved.
*
* @type { ?boolean }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
isPersisted?: boolean;
/**
* The network type of the current work.
*
* @type { ?NetworkType }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
networkType?: NetworkType;
/**
* Whether a charging state has been set for triggering the work.
*
* @type { ?boolean }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
isCharging?: boolean;
/**
* The charger type based on which the work is triggered.
*
* @type { ?ChargingType }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
chargerType?: ChargingType;
/**
* The battery level for triggering a work.
*
* @type { ?number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
batteryLevel?: number;
/**
* The battery status for triggering a work.
*
* @type { ?BatteryStatus }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
batteryStatus?: BatteryStatus;
/**
* Whether a storage state has been set for triggering the work.
*
* @type { ?StorageRequest }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
storageRequest?: StorageRequest;
/**
* The interval at which the work is repeated.
*
* @type { ?number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
repeatCycleTime?: number;
/**
* Whether the work has been set to repeat at the specified interval.
*
* @type { ?boolean }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
isRepeat?: boolean;
/**
* The repeat of the current work.
*
* @type { ?number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
repeatCount?: number;
/**
* Whether the device deep idle state has been set for triggering the work.
*
* @type { ?boolean }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
isDeepIdle?: boolean;
/**
* The idle wait time based on which the work is triggered.
*
* @type { ?number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
idleWaitTime?: number;
/**
* The parameters of the work. The value is only supported basic type(Number, String, Boolean).
*
* @type { ?Record<string, number | string | boolean> }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
parameters?: Record<string, number | string | boolean>;
}
/**
* Add a work to the queue. A work can be executed only when it meets the preset triggering condition
* <p> and complies with the rules of work scheduler manager. </p>
*
* @param { WorkInfo } work - The info of work.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types; 3. Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @throws { BusinessError } 9700005 - Calling startWork failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function startWork(work: WorkInfo): void;
/**
* Stop a work.
*
* @param { WorkInfo } work - The info of work.
* @param { boolean } needCancel - True if need to be canceled after being stopped, otherwise false.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types; 3. Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function stopWork(work: WorkInfo, needCancel?: boolean): void;
/**
* Obtains the work info of the wordId.
*
* @param { number } workId - The id of work.
* @param { AsyncCallback<WorkInfo> } callback - The callback of the function.
* @throws { BusinessError } 401 - Parameter error. Possible causes: Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function getWorkStatus(workId: number, callback: AsyncCallback<WorkInfo>): void;
/**
* Obtains the work info of the wordId.
*
* @param { number } workId - The id of work.
* @returns { Promise<WorkInfo> } The promise returned by the function.
* @throws { BusinessError } 401 - Parameter error. Possible causes: Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function getWorkStatus(workId: number): Promise<WorkInfo>;
/**
* Get all works of the calling application.
*
* @param { AsyncCallback<void> } callback - The callback of the function.
* @returns { Array<WorkInfo> } the work info list.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @deprecated since 10
*/
function obtainAllWorks(callback: AsyncCallback<void>): Array<WorkInfo>;
/**
* Get all works of the calling application.
*
* @param { AsyncCallback<Array<WorkInfo>> } callback - The callback of the function.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 10
*/
function obtainAllWorks(callback: AsyncCallback<Array<WorkInfo>>): void;
/**
* Get all works of the calling application.
*
* @returns { Promise<Array<WorkInfo>> } The work info list.
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function obtainAllWorks(): Promise<Array<WorkInfo>>;
/**
* Stop all and clear all works of the calling application.
*
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
* <br> 2. Incorrect parameters types.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function stopAndClearWorks(): void;
/**
* Check whether last work running is timeout. The interface is for repeating work.
*
* @param { number } workId - The id of work.
* @param { AsyncCallback<void> } callback - The callback of the function.
* @returns { boolean } true if last work running is timeout, otherwise false.
* @throws { BusinessError } 401 - Parameter error. Possible causes: Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @deprecated since 10
*/
function isLastWorkTimeOut(workId: number, callback: AsyncCallback<void>): boolean;
/**
* Check whether last work running is timeout. The interface is for repeating work.
*
* @param { number } workId - The id of work.
* @param { AsyncCallback<boolean> } callback - The callback of the function.
* @throws { BusinessError } 401 - Parameter error. Possible causes: Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 10
*/
function isLastWorkTimeOut(workId: number, callback: AsyncCallback<boolean>): void;
/**
* Check whether last work running is timeout. The interface is for repeating work.
*
* @param { number } workId - The id of work.
* @returns { Promise<boolean> } True if last work running is timeout, otherwise false.
* @throws { BusinessError } 401 - Parameter error. Possible causes: Parameter verification failed.
* @throws { BusinessError } 9700001 - Memory operation failed.
* @throws { BusinessError } 9700002 - Parcel operation failed.
* @throws { BusinessError } 9700003 - System service operation failed.
* @throws { BusinessError } 9700004 - Check on workInfo failed.
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
function isLastWorkTimeOut(workId: number): Promise<boolean>;
/**
* Describes network type.
*
* @enum { number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @name NetworkType
*/
export enum NetworkType {
/**
* Describes any network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_ANY = 0,
/**
* Describes a mobile network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_MOBILE,
/**
* Describes a wifi network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_WIFI,
/**
* Describes a bluetooth network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_BLUETOOTH,
/**
* Describes a wifi p2p network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_WIFI_P2P,
/**
* Describes a wifi wire network connection.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
NETWORK_TYPE_ETHERNET
}
/**
* Describes charging type.
*
* @enum { number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @name ChargingType
*/
export enum ChargingType {
/**
* Describes any charger is connected.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
CHARGING_PLUGGED_ANY = 0,
/**
* Describes ac charger is connected.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
CHARGING_PLUGGED_AC,
/**
* Describes usb charger is connected.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
CHARGING_PLUGGED_USB,
/**
* Describes wireless charger is connected.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
CHARGING_PLUGGED_WIRELESS
}
/**
* Describes the battery status.
*
* @enum { number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @name BatteryStatus
*/
export enum BatteryStatus {
/**
* Describes battery status is to low.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
BATTERY_STATUS_LOW = 0,
/**
* Describes battery status is to ok.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
BATTERY_STATUS_OKAY,
/**
* Describes battery status is to low or ok.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
BATTERY_STATUS_LOW_OR_OKAY
}
/**
* Describes the storage request.
*
* @enum { number }
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
* @name StorageRequest
*/
export enum StorageRequest {
/**
* Describes storage is to low.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
STORAGE_LEVEL_LOW = 0,
/**
* Describes storage is to ok.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
STORAGE_LEVEL_OKAY,
/**
* Describes storage is to low or ok.
*
* @syscap SystemCapability.ResourceSchedule.WorkScheduler
* @StageModelOnly
* @since 9
*/
STORAGE_LEVEL_LOW_OR_OKAY
}
}
export default workScheduler;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lffl8796/interface_sdk-js.git
git@gitee.com:lffl8796/interface_sdk-js.git
lffl8796
interface_sdk-js
interface_sdk-js
master

搜索帮助