Process$Typings<T extends RunOptions> extension

on

Properties

pid num

Available on Process<T>, provided by the Process$Typings extension

The operating system's process ID for the sub-process.
no setter
rid num

Available on Process<T>, provided by the Process$Typings extension

The resource ID of the sub-process.
no setter
stderr → dynamic

Available on Process<T>, provided by the Process$Typings extension

A reference to the sub-processes stderr, which allows interacting with the sub-process at a low level.
no setter
stdin → dynamic

Available on Process<T>, provided by the Process$Typings extension

A reference to the sub-processes stdin, which allows interacting with the sub-process at a low level.
no setter
stdout → dynamic

Available on Process<T>, provided by the Process$Typings extension

A reference to the sub-processes stdout, which allows interacting with the sub-process at a low level.
no setter

Methods

close() → void

Available on Process<T>, provided by the Process$Typings extension

Clean up resources associated with the sub-process instance.
kill([Signal? signo]) → void

Available on Process<T>, provided by the Process$Typings extension

Send a signal to process. Default signal is "SIGTERM".
output() Future<Uint8List>

Available on Process<T>, provided by the Process$Typings extension

Buffer the stdout until EOF and return it as Uint8Array.
status() Future<ProcessStatus>

Available on Process<T>, provided by the Process$Typings extension

Wait for the process to exit and return its exit status.
stderrOutput() Future<Uint8List>

Available on Process<T>, provided by the Process$Typings extension

Buffer the stderr until EOF and return it as Uint8Array.