update api/@ohos.resourceschedule.backgroundTaskManager.d.ts.

Signed-off-by: 胡伟 <huwei169@huawei.com>
This commit is contained in:
胡伟 2025-03-27 11:32:20 +00:00 committed by Gitee
parent 2a7d94c60c
commit f39feab052
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -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>;
/**