Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
d5cb94fe
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d5cb94fe
编写于
6月 05, 2023
作者:
X
xuhanyang2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
Signed-off-by:
N
xuhanyang2
<
xuhanyang2@huawei.com
>
上级
ddc65649
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
66 deletion
+8
-66
zh-cn/release-notes/changelogs/OpenHarmony_4.0.8.1/资源调度子系统ChangeLog.md
...-notes/changelogs/OpenHarmony_4.0.8.1/资源调度子系统ChangeLog.md
+8
-66
未找到文件。
zh-cn/release-notes/changelogs/OpenHarmony_4.0.8.1/资源调度子系统ChangeLog.md
浏览文件 @
d5cb94fe
# 资源调度子系统ChangeLog
## ohos.resourceschedule.
runningLock
.1
## ohos.resourceschedule.
backgroundTaskManager
.1
提醒代理支持系统应用设置自定义按钮,并且自定义按钮可申请RunningLock锁
。
能效资源申请接口支持系统特权应用申请RunningLock和Sensor的能效资源
。
**变更影响**
基于OpenHarmony4.0.8.1及之后的SDK版本开发的系统
应用,可设置冻结后RunningLock锁释放,提高进入休眠概率
。
基于OpenHarmony4.0.8.1及之后的SDK版本开发的系统
特权应用,可以申请RunningLock和Sensor的能效资源,保障后台持锁和使用Sensor的能力
。
**关键接口/组件变更**
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| --------------------- | ------------ | ------------------- | -------- |
| backgroundTaskManager | ResourceType | RUNNING_LOCK = 128 | 新增 |
**适配指导**
<br>
```
ts
import
runningLock
from
'
@ohos.runningLock
'
;
let
request
=
{
resourceTypes
:
backgroundTaskManager
.
ResourceType
.
RUNNING_LOCK
,
isApply
:
true
,
timeOut
:
0
,
reason
:
"
apply
"
,
isPersist
:
true
};
let
res
;
try
{
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
//申请RUNNING_LOCK能效资源
console
.
info
(
"
the result of request is:
"
+
res
);
}
catch
(
error
)
{
console
.
error
(
`Operation applyEfficiencyResources failed. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
runningLock
.
create
(
'
running_lock_test
'
,
runningLock
.
RunningLockType
.
BACKGROUND
)
.
then
(
lock
=>
{
console
.
info
(
'
xuhanyang create running lock success
'
);
try
{
lock
.
hold
(
500000
);
//RUNNING_LOCK持锁500s
console
.
info
(
'
hold running lock success
'
);
}
catch
(
err
)
{
console
.
error
(
'
hold running lock failed, err:
'
+
err
);
}
})
.
catch
(
err
=>
{
console
.
error
(
'
create running lock failed, err:
'
+
err
);
});
```
## ohos.resourceschedule.sensor.2
冻结后Sensor处理,降低系统功耗。
**变更影响**
基于OpenHarmony4.0.8.1及之后的SDK版本开发的系统应用,可设置冻结后Sensor冻结后适配处理,降低系统功耗。
**关键接口/组件变更**
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| --------------------- | ------------ | ------------------- | -------- |
| backgroundTaskManager | ResourceType | SENSOR = 256 | 新增 |
**适配指导**
<br>
```
ts
import
sensor
from
'
@ohos.sensor
'
;
import
backgroundTaskManager
from
'
@ohos.resourceschedule.backgroundTaskManager
'
;
let
request
=
{
resourceTypes
:
backgroundTaskManager
.
ResourceType
.
SENSOR
,
resourceTypes
:
backgroundTaskManager
.
ResourceType
.
RUNNING_LOCK
|
backgroundTaskManager
.
ResourceType
.
SENSOR
,
isApply
:
true
,
timeOut
:
0
,
reason
:
"
apply
"
,
reason
:
"
apply
runninglock and sensor resource
"
,
isPersist
:
true
};
let
res
;
try
{
res
=
backgroundTaskManager
.
applyEfficiencyResources
(
request
);
//申请Sensor能效资源
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
}
`
);
}
try
{
sensor
.
on
(
sensor
.
SensorId
.
ACCELEROMETER
,
function
(
data
){
console
.
info
(
"
Data obtained successfully. x:
"
+
data
.
x
+
"
y:
"
+
data
.
y
+
"
z:
"
+
data
.
z
);
// 获取数据成功
});
//开启sensor获取数据
}
catch
(
error
)
{
console
.
error
(
`apply SENSOR fail. code is
${
error
.
code
}
message is
${
error
.
message
}
`
);
}
```
\ No newline at end of file
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录