提交 e257071f 编写于 作者: H houdisheng

修改评审意见

Signed-off-by: Nhoudisheng <houdisheng@huawei.com>
上级 eda5de45
...@@ -21,7 +21,7 @@ import stats from '@ohos.bundleState'; ...@@ -21,7 +21,7 @@ import stats from '@ohos.bundleState';
| function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback&lt;Array&lt;BundleStateInfo&gt;&gt;): void | 通过指定时间段间隔(天、周、月、年)查询应用使用时长统计信息。 | | function queryBundleStateInfoByInterval(byInterval: IntervalType, begin: number, end: number, callback: AsyncCallback&lt;Array&lt;BundleStateInfo&gt;&gt;): void | 通过指定时间段间隔(天、周、月、年)查询应用使用时长统计信息。 |
| function queryAppUsagePriorityGroup(callback: AsyncCallback&lt;number&gt;): void | 查询(返回)当前调用者应用的使用优先级群组。 | | function queryAppUsagePriorityGroup(callback: AsyncCallback&lt;number&gt;): void | 查询(返回)当前调用者应用的使用优先级群组。 |
| function isIdleState(bundleName: string, callback: AsyncCallback&lt;boolean&gt;): void | 判断指定Bundle Name的应用当前是否是空闲状态。 | | function isIdleState(bundleName: string, callback: AsyncCallback&lt;boolean&gt;): void | 判断指定Bundle Name的应用当前是否是空闲状态。 |
| function getModuleUsageRecord(maxNum: number, callback: AsyncCallback&lt;BundleActiveModuleInfo&gt;): void | 根据maxNum,查询FA使用记录,返回不超过maxNum条FA使用记录。 | | function getRecentUsageModules(maxNum: number, callback: AsyncCallback&lt;BundleActiveModuleInfo&gt;): void | 根据maxNum,查询FA使用记录,返回不超过maxNum条FA使用记录。 |
## 开发步骤 ## 开发步骤
...@@ -213,25 +213,25 @@ import stats from '@ohos.bundleState'; ...@@ -213,25 +213,25 @@ import stats from '@ohos.bundleState';
import stats from '@ohos.bundleState' import stats from '@ohos.bundleState'
// 异步方法promise方式 // 异步方法promise方式
stats.getModuleUsageRecord(this.maxNum).then( res => { stats.getRecentUsageModules(this.maxNum).then( res => {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise succeeded'); console.log('BUNDLE_ACTIVE getRecentUsageModules promise succeeded');
for (let i = 0; i < res.length; i++) { for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise number : ' + (i + 1)); console.log('BUNDLE_ACTIVE getRecentUsageModules promise number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise result ' + JSON.stringify(res[i])); console.log('BUNDLE_ACTIVE getRecentUsageModules promise result ' + JSON.stringify(res[i]));
} }
}).catch( err=> { }).catch( err=> {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise failed, because: ' + err.code); console.log('BUNDLE_ACTIVE getRecentUsageModules promise failed, because: ' + err.code);
}); });
// 异步方法callback方式 // 异步方法callback方式
stats.getModuleUsageRecord(this.maxNum,(err, res) => { stats.getRecentUsageModules(this.maxNum,(err, res) => {
if(err) { if(err) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback failed, because: ' + err.code); console.log('BUNDLE_ACTIVE getRecentUsageModules callback failed, because: ' + err.code);
} else { } else {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback succeeded.'); console.log('BUNDLE_ACTIVE getRecentUsageModules callback succeeded.');
for (let i = 0; i < res.length; i++) { for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback number : ' + (i + 1)); console.log('BUNDLE_ACTIVE getRecentUsageModules callback number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback result ' + JSON.stringify(res[i])); console.log('BUNDLE_ACTIVE getRecentUsageModules callback result ' + JSON.stringify(res[i]));
} }
} }
}); });
......
...@@ -403,9 +403,9 @@ queryCurrentBundleActiveStates(begin: number, end: number): Promise&lt;Array&lt; ...@@ -403,9 +403,9 @@ queryCurrentBundleActiveStates(begin: number, end: number): Promise&lt;Array&lt;
}); });
``` ```
## bundleState.getModuleUsageRecord<sup>9+</sup> ## bundleState.getRecentUsageModules<sup>9+</sup>
getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo&gt;&gt; getRecentUsageModules(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo&gt;&gt;
据maxNum,查询FA使用记录,使用Promise形式返回不超过maxNum条FA使用记录,maxNum最大为1000。 据maxNum,查询FA使用记录,使用Promise形式返回不超过maxNum条FA使用记录,maxNum最大为1000。
...@@ -428,20 +428,20 @@ getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo ...@@ -428,20 +428,20 @@ getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo
**示例** **示例**
```js ```js
bundleState.getModuleUsageRecord(this.maxNum).then( res => { bundleState.getRecentUsageModules(this.maxNum).then( res => {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise succeeded'); console.log('BUNDLE_ACTIVE getRecentUsageModules promise succeeded');
for (let i = 0; i < res.length; i++) { for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise number : ' + (i + 1)); console.log('BUNDLE_ACTIVE getRecentUsageModules promise number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise result ' + JSON.stringify(res[i])); console.log('BUNDLE_ACTIVE getRecentUsageModules promise result ' + JSON.stringify(res[i]));
} }
}).catch( err=> { }).catch( err=> {
console.log('BUNDLE_ACTIVE getModuleUsageRecord promise failed, because: ' + err.code); console.log('BUNDLE_ACTIVE getRecentUsageModules promise failed, because: ' + err.code);
}); });
``` ```
## bundleState.getModuleUsageRecord<sup>9+</sup> ## bundleState.getRecentUsageModules<sup>9+</sup>
getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo&gt;&gt; getRecentUsageModules(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo&gt;&gt;
查询FA使用记录。使用callback形式返回数量最大不超过maxNum设置的值,maxNum最大为1000。 查询FA使用记录。使用callback形式返回数量最大不超过maxNum设置的值,maxNum最大为1000。
...@@ -459,14 +459,14 @@ getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo ...@@ -459,14 +459,14 @@ getModuleUsageRecord(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleInfo
**示例** **示例**
```js ```js
bundleState.getModuleUsageRecord(this.maxNum,(err, res) => { bundleState.getRecentUsageModules(this.maxNum,(err, res) => {
if(err) { if(err) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback failed, because: ' + err.code); console.log('BUNDLE_ACTIVE getRecentUsageModules callback failed, because: ' + err.code);
} else { } else {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback succeeded.'); console.log('BUNDLE_ACTIVE getRecentUsageModules callback succeeded.');
for (let i = 0; i < res.length; i++) { for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback number : ' + (i + 1)); console.log('BUNDLE_ACTIVE getRecentUsageModules callback number : ' + (i + 1));
console.log('BUNDLE_ACTIVE getModuleUsageRecord callback result ' + JSON.stringify(res[i])); console.log('BUNDLE_ACTIVE getRecentUsageModules callback result ' + JSON.stringify(res[i]));
} }
} }
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册