harmony 鸿蒙@ohos.app.ability.ChildProcess
@ohos.app.ability.ChildProcess
ChildProcess is the base class for you to customize child processes. When starting a child process through childProcessManager, you must inherit this class and override the entrypoint method.
NOTE
The initial APIs of this module are supported since API version 11. Newly added APIs will be marked with a superscript to indicate their earliest API version.
The APIs of this module can be used only in the stage model.
Modules to Import
import { ChildProcess } from '@kit.AbilityKit';
ChildProcess.onStart
onStart(args?: ChildProcessArgs): void
Entrypoint method of the child process. This callback is triggered when the child process is started through childProcessManager.
System capability: SystemCapability.Ability.AbilityRuntime.Core
Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
args12+ | ChildProcessArgs | No | Parameters transferred to the child process. |
Example
import { ChildProcess, ChildProcessArgs } from '@kit.AbilityKit';
export default class DemoProcess extends ChildProcess {
onStart(args?: ChildProcessArgs) {
let entryParams = args?.entryParams;
let fd = args?.fds?.key1;
// ..
}
}
你可能感兴趣的鸿蒙文章
harmony 鸿蒙AbilityAccessControl
harmony 鸿蒙OH_NativeBundle_ApplicationInfo
harmony 鸿蒙OH_NativeBundle_ElementName
- 所属分类: 后端技术
- 本文标签:
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦