往期鸿蒙全套实战文章必看:(文中附带全栈鸿蒙学习资料)
@ohos.app.appstartup.StartupConfig
本模块提供启动任务的配置接口。
说明
本模块首批接口从API version 12开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
本模块接口仅可在Stage模型下使用。
导入模块
import { StartupConfig } from '@kit.AbilityKit';
属性
系统能力:以下各项对应的系统能力均为SystemCapability.Ability.AppStartup
| 名称 | 类型 | 只读 | 可选 | 说明 |
|---|---|---|---|---|
| timeoutMs | number | 是 | 是 | 执行所有启动任务的超时时间,默认值为10000毫秒。 |
| startupListener | StartupListener | 是 | 是 | 表示启动框架的监听器,该监听器将在所有启动任务完成时调用。 |
示例:
import { StartupConfig, StartupConfigEntry, StartupListener } from '@kit.AbilityKit';
import { BusinessError } from '@kit.BasicServicesKit';
import { hilog } from '@kit.PerformanceAnalysisKit';
export default class MyStartupConfigEntry extends StartupConfigEntry {
onConfig() {
hilog.info(0x0000, 'testTag', `onConfig`);
let onCompletedCallback = (error: BusinessError<void>) => {
hilog.info(0x0000, 'testTag', `onCompletedCallback`);
if (error) {
hilog.info(0x0000, 'testTag', 'onCompletedCallback: %{public}d, message: %{public}s', error.code, error.message);
} else {
hilog.info(0x0000, 'testTag', `onCompletedCallback: success.`);
}
}
let startupListener: StartupListener = {
'onCompleted': onCompletedCallback
}
let config: StartupConfig = {
'timeoutMs': 10000,
'startupListener': startupListener
}
return config;
}
}




被折叠的 条评论
为什么被折叠?



