1# 申请能效资源 2 3## 场景说明 4 5在实际的系统中,存在一些重要性高的系统应用,虽然此类应用相比普通应用具有一定的特权,但为了进一步平衡系统的功耗开销,这些应用同样需要支持在后台可被挂起。但对于系统特权应用,为了避免挂起后重要功能受到影响,提供了独立的能效资源申请接口,使这些特权应用可以在后台执行一些特殊的任务和使用特定的系统资源,例如在被挂起期间如果仍然希望能够收到系统公共事件,可以使用能效资源接口向系统申请使用公共事件资源。 6 7对于需要升级为特权应用的,开发者需要合理评估自己的业务诉求,向应用中心提出申请。 8 9## 约束与限制 10仅支持系统应用。 11 12## 接口说明 13 14**表1** 申请能效资源主要接口 15 16| 接口名 | 描述 | 17| ---------------------------------------- | ---------- | 18| applyEfficiencyResources(request: [EfficiencyResourcesRequest](../reference/apis/js-apis-resourceschedule-backgroundTaskManager.md#efficiencyresourcesrequest)): boolean | 申请能效资源。 | 19| resetAllEfficiencyResources():void | 释放申请的能效资源。 | 20 21 22## 开发步骤 23 241、当特权应用需要在后台使用特殊资源时。向系统申请目标资源。 25 262、当资源使用完毕,需要及时释放。支持释放部分资源或全部资源。 27 28```js 29import backgroundTaskManager from '@ohos.backgroundTaskManager'; 30 31// 申请能效资源 32let request = { 33 resourceTypes: backgroundTaskManager.ResourceType.COMMON_EVENT | 34 backgroundTaskManager.ResourceType.TIMER, 35 isApply: true, 36 timeOut: 0, 37 reason: "apply", 38 isPersist: true, 39 isProcess: true, 40}; 41let res = backgroundTaskManager.applyEfficiencyResources(request); 42console.info("the result of request is: " + res); 43 44// 释放部分资源 45request = { 46 resourceTypes: backgroundTaskManager.ResourceType.COMMON_EVENT, 47 isApply: false, 48 timeOut: 0, 49 reason: "reset", 50}; 51res = backgroundTaskManager.applyEfficiencyResources(request); 52console.info("the result of request is: " + res); 53 54// 释放全部资源 55backgroundTaskManager.resetAllEfficiencyResources(); 56``` 57