ProcessResults
classin packageklyn.process
public class ProcessResults extends Object:
Immutable value object describing the result of a process execution.
@param PID Operating-system process identifier (or `0u` if unavailable).
@param exitCode Process exit status (`0` means success).
@param output Standard output captured from the process.
@param error Standard error captured from the process.
Fields
| Modifier and Type |
Member |
Description |
| public readonly |
PID |
Operating-system process identifier. |
| public readonly |
error |
Captured standard error. |
| public readonly |
exitCode |
Process exit status. |
| public readonly |
output |
Captured standard output. |
Methods
| Modifier and Type |
Member |
Description |
| public override |
toString |
Returns a readable representation of this process result. |