mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2025-04-06 22:21:48 +00:00
update api/@ohos.resourceschedule.backgroundTaskManager.d.ts.
Signed-off-by: 胡伟 <huwei169@huawei.com>
This commit is contained in:
parent
2a7d94c60c
commit
f39feab052
@ -390,6 +390,23 @@ declare namespace backgroundTaskManager {
|
||||
* @atomicservice
|
||||
* @since 12
|
||||
*/
|
||||
/**
|
||||
* Service ability uses this method to request stop running in background.
|
||||
*
|
||||
* @param { Context } context - App running context.
|
||||
* @param { AsyncCallback<void> } callback - The callback of the function.
|
||||
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified.
|
||||
* @throws { BusinessError } 9800001 - Memory operation failed.
|
||||
* @throws { BusinessError } 9800002 - Parcel operation failed.
|
||||
* @throws { BusinessError } 9800003 - Internal transaction failed.
|
||||
* @throws { BusinessError } 9800004 - System service operation failed.
|
||||
* @throws { BusinessError } 9800005 - Continuous task verification failed.
|
||||
* @throws { BusinessError } 9800006 - Notification verification failed for a continuous task.
|
||||
* @throws { BusinessError } 9800007 - Continuous task storage failed.
|
||||
* @syscap SystemCapability.ResourceSchedule.BackgroundTaskManager.ContinuousTask
|
||||
* @atomicservice
|
||||
* @since 17
|
||||
*/
|
||||
function stopBackgroundRunning(context: Context, callback: AsyncCallback<void>): void;
|
||||
|
||||
/**
|
||||
@ -427,6 +444,23 @@ declare namespace backgroundTaskManager {
|
||||
* @atomicservice
|
||||
* @since 12
|
||||
*/
|
||||
/**
|
||||
* Service ability uses this method to request stop running in background.
|
||||
*
|
||||
* @param { Context } context - App running context.
|
||||
* @returns { Promise<void> } The promise returned by the function.
|
||||
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified.
|
||||
* @throws { BusinessError } 9800001 - Memory operation failed.
|
||||
* @throws { BusinessError } 9800002 - Parcel operation failed.
|
||||
* @throws { BusinessError } 9800003 - Internal transaction failed.
|
||||
* @throws { BusinessError } 9800004 - System service operation failed.
|
||||
* @throws { BusinessError } 9800005 - Continuous task verification failed.
|
||||
* @throws { BusinessError } 9800006 - Notification verification failed for a continuous task.
|
||||
* @throws { BusinessError } 9800007 - Continuous task storage failed.
|
||||
* @syscap SystemCapability.ResourceSchedule.BackgroundTaskManager.ContinuousTask
|
||||
* @atomicservice
|
||||
* @since 17
|
||||
*/
|
||||
function stopBackgroundRunning(context: Context): Promise<void>;
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user