Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8c99526d
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8c99526d
编写于
1月 19, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 19, 2023
浏览文件
操作
浏览文件
下载
差异文件
!13709 后台任务文档修改
Merge pull request !13709 from 张鑫/master
上级
4b8cc91d
1773606f
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
108 addition
and
72 deletion
+108
-72
zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md
...ce/apis/js-apis-resourceschedule-backgroundTaskManager.md
+29
-21
zh-cn/application-dev/task-management/background-task-overview.md
...plication-dev/task-management/background-task-overview.md
+6
-6
zh-cn/application-dev/task-management/continuous-task-dev-guide.md
...lication-dev/task-management/continuous-task-dev-guide.md
+51
-39
zh-cn/application-dev/task-management/efficiency-resources-apply-dev-guide.md
...v/task-management/efficiency-resources-apply-dev-guide.md
+22
-6
zh-cn/application-dev/task-management/figures/bgtask_choice.png
...application-dev/task-management/figures/bgtask_choice.png
+0
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-resourceschedule-backgroundTaskManager.md
浏览文件 @
8c99526d
...
@@ -66,8 +66,8 @@ requestSuspendDelay(reason: string, callback: Callback<void>): DelaySuspen
...
@@ -66,8 +66,8 @@ requestSuspendDelay(reason: string, callback: Callback<void>): DelaySuspen
let
delayInfo
=
backgroundTaskManager
.
requestSuspendDelay
(
myReason
,
()
=>
{
let
delayInfo
=
backgroundTaskManager
.
requestSuspendDelay
(
myReason
,
()
=>
{
console
.
info
(
"
Request suspension delay will time out.
"
);
console
.
info
(
"
Request suspension delay will time out.
"
);
})
})
var
id
=
delayInfo
.
requestId
;
let
id
=
delayInfo
.
requestId
;
var
time
=
delayInfo
.
actualDelayTime
;
let
time
=
delayInfo
.
actualDelayTime
;
console
.
info
(
"
The requestId is:
"
+
id
);
console
.
info
(
"
The requestId is:
"
+
id
);
console
.
info
(
"
The actualDelayTime is:
"
+
time
);
console
.
info
(
"
The actualDelayTime is:
"
+
time
);
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -281,6 +281,7 @@ export default class EntryAbility extends UIAbility {
...
@@ -281,6 +281,7 @@ export default class EntryAbility extends UIAbility {
wantAgentFlags
:
[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
wantAgentFlags
:
[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
};
};
try
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
try
{
try
{
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
...
@@ -289,6 +290,9 @@ export default class EntryAbility extends UIAbility {
...
@@ -289,6 +290,9 @@ export default class EntryAbility extends UIAbility {
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
});
});
}
catch
(
error
)
{
console
.
error
(
`Operation getWantAgent failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
}
};
};
```
```
...
@@ -352,6 +356,7 @@ export default class EntryAbility extends UIAbility {
...
@@ -352,6 +356,7 @@ export default class EntryAbility extends UIAbility {
wantAgentFlags
:
[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
wantAgentFlags
:
[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
};
};
try
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
try
{
try
{
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
...
@@ -364,6 +369,9 @@ export default class EntryAbility extends UIAbility {
...
@@ -364,6 +369,9 @@ export default class EntryAbility extends UIAbility {
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
});
});
}
catch
(
error
)
{
console
.
error
(
`Operation getWantAgent failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
}
};
};
```
```
...
...
zh-cn/application-dev/task-management/background-task-overview.md
浏览文件 @
8c99526d
...
@@ -100,13 +100,13 @@ OpenHarmony提供了九种后台模式,供需要在后台做长时任务的业
...
@@ -100,13 +100,13 @@ OpenHarmony提供了九种后台模式,供需要在后台做长时任务的业
-
携带参数信息支持number、string、bool三种类型。
-
携带参数信息支持number、string、bool三种类型。
## 申请能效资源
## 申请能效资源
能效资源可以分为四种:CPU资源,WORK_SCHEDULER资源,软件资源(COMMON_EVENT,TIMER),硬件资源(GPS,BLUETOOTH,
AUDIO)。
供系统应用使用的能效资源可以分为两类:软件资源(WORK_SCHEDULER, COMMON_EVENT, TIMER),硬件资源(CPU, GPS, BLUETOOTH,
AUDIO)。
应用
或进程申请能效资源后能够获得相应特权
:
应用
申请不同的能效资源后可以执行相应的操作
:
*
申请CPU资源后可以不被挂起,直到任务完成。
*
申请CPU资源后可以不被挂起,直到任务完成。
*
申请WORK_SCHEDULER资源后不受延迟任务执行频率约束,且任务执行时间增加
*
申请WORK_SCHEDULER资源后不受延迟任务执行频率约束,且任务执行时间增加
。
*
申请COMMON_EVENT资源后,应用在后台处于挂起状态时,仍然能够接收到系统公共事件,申请TIMER资源后,应用能够使用定时器执行精确定时任务
、
*
申请COMMON_EVENT资源后,应用在后台处于挂起状态时,仍然能够接收到系统公共事件,申请TIMER资源后,应用能够使用定时器执行精确定时任务
。
*
申请
硬件资源后,应用在后台被挂起后,依然能够被相关
服务唤醒,执行相应的任务。
*
申请
资源(GPS, BLUETOOTH, AUDIO)后,应用在后台被挂起后,依然能够被管理相关硬件的
服务唤醒,执行相应的任务。
**表1**
能效资源种类
**表1**
能效资源种类
...
@@ -125,4 +125,4 @@ OpenHarmony提供了九种后台模式,供需要在后台做长时任务的业
...
@@ -125,4 +125,4 @@ OpenHarmony提供了九种后台模式,供需要在后台做长时任务的业
-
能效资源申请或者释放可以由进程或者应用发起,由应用发起的资源释放会释放属于它的同类型的所有资源,包括进程申请的资源。例如应用申请了CPU资源,进程申请了CPU和WORK_SCHEDULER资源,当应用释放CPU资源的时候,会将进程的CPU资源一同释放,同时不同类型的WORK_SCHEDULER资源不受影响。由进程发起的资源释放对应用申请的资源没有影响,例如当应用和进程同时申请了CPU,进程发起了CPU资源释放,应用的CPU资源不会被释放。
-
能效资源申请或者释放可以由进程或者应用发起,由应用发起的资源释放会释放属于它的同类型的所有资源,包括进程申请的资源。例如应用申请了CPU资源,进程申请了CPU和WORK_SCHEDULER资源,当应用释放CPU资源的时候,会将进程的CPU资源一同释放,同时不同类型的WORK_SCHEDULER资源不受影响。由进程发起的资源释放对应用申请的资源没有影响,例如当应用和进程同时申请了CPU,进程发起了CPU资源释放,应用的CPU资源不会被释放。
-
同时申请同一类持久资源和非持久资源,持久资源会覆盖非持久资源,在超时时不会释放资源。例如应用首先申请了10s的CPU资源,然后在第5s的时候申请了持久的CPU资源,那么资源会变成持久的,非持久的CPU资源记录会被持久化的CPU资源记录覆盖,到了第10s的时候资源不会被释放,如果在第8s的时候提前释放了资源,那么会将CPU资源释放,无法单独释放其中非持久的或者持久的CPU资源。
-
同时申请同一类持久资源和非持久资源,持久资源会覆盖非持久资源,在超时时不会释放资源。例如应用首先申请了10s的CPU资源,然后在第5s的时候申请了持久的CPU资源,那么资源会变成持久的,非持久的CPU资源记录会被持久化的CPU资源记录覆盖,到了第10s的时候资源不会被释放,如果在第8s的时候提前释放了资源,那么会将CPU资源释放,无法单独释放其中非持久的或者持久的CPU资源。
-
WORK_SCHEDULER资源只能由应用申请和释放,不能由进程申请和释放。
-
WORK_SCHEDULER资源只能由应用申请和释放,不能由进程申请和释放。
-
需要使用能效资源的应用
,需要向应用中心提出申请,获取
相应的特权。
-
需要使用能效资源的应用
必须是系统应用,同时需要向应用中心提出申请,配置
相应的特权。
zh-cn/application-dev/task-management/continuous-task-dev-guide.md
浏览文件 @
8c99526d
...
@@ -89,6 +89,7 @@ struct Index {
...
@@ -89,6 +89,7 @@ struct Index {
};
};
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
try
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
try
{
try
{
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
backgroundTaskManager
.
startBackgroundRunning
(
this
.
context
,
...
@@ -101,6 +102,9 @@ struct Index {
...
@@ -101,6 +102,9 @@ struct Index {
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
});
});
}
catch
(
error
)
{
console
.
error
(
`Operation getWantAgent failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
}
stopContinuousTask
()
{
stopContinuousTask
()
{
...
@@ -176,6 +180,7 @@ function startContinuousTask() {
...
@@ -176,6 +180,7 @@ function startContinuousTask() {
};
};
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
try
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
try
{
try
{
backgroundTaskManager
.
startBackgroundRunning
(
mContext
,
backgroundTaskManager
.
startBackgroundRunning
(
mContext
,
...
@@ -188,6 +193,9 @@ function startContinuousTask() {
...
@@ -188,6 +193,9 @@ function startContinuousTask() {
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
});
});
}
catch
(
error
)
{
console
.
error
(
`Operation getWantAgent failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
}
function
stopContinuousTask
()
{
function
stopContinuousTask
()
{
...
@@ -335,6 +343,7 @@ function startContinuousTask() {
...
@@ -335,6 +343,7 @@ function startContinuousTask() {
};
};
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
// 通过wantAgent模块的getWantAgent方法获取WantAgent对象
try
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
try
{
try
{
backgroundTaskManager
.
startBackgroundRunning
(
featureAbility
.
getContext
(),
backgroundTaskManager
.
startBackgroundRunning
(
featureAbility
.
getContext
(),
...
@@ -347,6 +356,9 @@ function startContinuousTask() {
...
@@ -347,6 +356,9 @@ function startContinuousTask() {
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
console
.
error
(
`Operation startBackgroundRunning failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
});
});
}
catch
(
error
)
{
console
.
error
(
`Operation getWantAgent failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
}
}
function
stopContinuousTask
()
{
function
stopContinuousTask
()
{
...
@@ -396,7 +408,7 @@ class MyStub extends rpc.RemoteObject {
...
@@ -396,7 +408,7 @@ class MyStub extends rpc.RemoteObject {
}
}
export
default
{
export
default
{
onStart
(
want
)
{
onStart
()
{
console
.
info
(
'
ServiceAbility onStart
'
);
console
.
info
(
'
ServiceAbility onStart
'
);
mMyStub
=
new
MyStub
(
"
ServiceAbility-test
"
);
mMyStub
=
new
MyStub
(
"
ServiceAbility-test
"
);
// 在执行后台长时任前,调用申请接口。
// 在执行后台长时任前,调用申请接口。
...
@@ -416,7 +428,7 @@ export default {
...
@@ -416,7 +428,7 @@ export default {
onDisconnect
()
{
onDisconnect
()
{
console
.
info
(
'
ServiceAbility onDisconnect
'
);
console
.
info
(
'
ServiceAbility onDisconnect
'
);
},
},
onCommand
(
want
,
restart
,
startId
)
{
onCommand
(
want
,
startId
)
{
console
.
info
(
'
ServiceAbility onCommand
'
);
console
.
info
(
'
ServiceAbility onCommand
'
);
}
}
};
};
...
...
zh-cn/application-dev/task-management/efficiency-resources-apply-dev-guide.md
浏览文件 @
8c99526d
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
2、当资源使用完毕,需要及时释放。支持释放部分资源或全部资源。
2、当资源使用完毕,需要及时释放。支持释放部分资源或全部资源。
```
js
```
js
import
backgroundTaskManager
from
'
@ohos.backgroundTaskManager
'
;
import
backgroundTaskManager
from
'
@ohos.
resourceschedule.
backgroundTaskManager
'
;
// 申请能效资源
// 申请能效资源
let
request
=
{
let
request
=
{
...
@@ -35,8 +35,14 @@ let request = {
...
@@ -35,8 +35,14 @@ let request = {
isPersist
:
true
,
isPersist
:
true
,
isProcess
:
true
,
isProcess
:
true
,
};
};
let
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
console
.
info
(
"
the result of request is:
"
+
res
);
let
res
;
try
{
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
console
.
info
(
"
the result of request is:
"
+
res
);
}
catch
(
error
)
{
console
.
error
(
`Operation applyEfficiencyResources failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
// 释放部分资源
// 释放部分资源
request
=
{
request
=
{
...
@@ -44,10 +50,20 @@ request = {
...
@@ -44,10 +50,20 @@ request = {
isApply
:
false
,
isApply
:
false
,
timeOut
:
0
,
timeOut
:
0
,
reason
:
"
reset
"
,
reason
:
"
reset
"
,
isPersist
:
true
,
isProcess
:
true
,
};
};
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
try
{
console
.
info
(
"
the result of request is:
"
+
res
);
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
console
.
info
(
"
the result of request is:
"
+
res
);
}
catch
(
error
)
{
console
.
error
(
`Operation applyEfficiencyResources failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
// 释放全部资源
// 释放全部资源
backgroundTaskManager
.
resetAllEfficiencyResources
();
try
{
backgroundTaskManager
.
resetAllEfficiencyResources
();
}
catch
(
error
)
{
console
.
error
(
`Operation resetAllEfficiencyResources failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
```
```
zh-cn/application-dev/task-management/figures/bgtask_choice.png
查看替换文件 @
4b8cc91d
浏览文件 @
8c99526d
38.3 KB
|
W:
|
H:
38.0 KB
|
W:
|
H:
2-up
Swipe
Onion skin
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录