Std process process
std:std.process.Process
Class Process#
| Fields | |
|---|---|
| Finished | Invoked when process has finished executing. |
| StderrReady | Invoked when proces has written to stderr (TODO). |
| StdoutReady | Invoked when process has written to stdout. |
| Properties | |
|---|---|
| ExitCode | Process exit code. (read only) |
| StderrAvail | Process stder bytes available to read (TODO). (read only) |
| StdoutAvail | Process stdout bytes available to read. (read only) |
| Methods | |
|---|---|
| ReadStderr | Read process stderr (TODO). |
| ReadStdout | Read process stdout. |
| SendBreak | Send break signal to process. |
| Start | Starts a new process. |
| Terminate | Terminate process. |
| WriteStdin | Write process stdin. |