Tauri Child
Since: 1.1.0
构造 函数
constructor
new Child(: ):
Child
pid
number
参数
名字 | 类型 |
---|---|
pid | number |
Defined in: shell.ts:325
性能
pid
PID:number
子进程 。pid
Defined in: shell.ts:323
方法
kill
kill():
Promise
<void
>
终止子进程。
Returns: Promise
<void
>
指示操作成功或失败的承诺。
write
write(: |
Uint8Array
):Promise
data
string
<void
>
写入 .data
stdin
例
import { Command } from '@tauri-apps/api/shell';
const command = new Command('node');
const child = await command.spawn();
await child.write('message');
await child.write([0, 1, 2, 3, 4, 5]);
参数
名字 | 类型 | 描述 |
---|---|---|
data | string | Uint8数组 | 要写入的消息,可以是字符串,也可以是字节数组。 |
Returns:
Promise
<void
>
指示操作成功或失败的承诺。