enum
ProcessStartMode

Modes for running a new process.

Constants

List<ProcessStartMode> values = const List<ProcessStartMode>
const
A constant List of the values in this enum, in order of their declaration.
ProcessStartMode NORMAL = const ProcessStartMode(1)
const
Normal child process.
ProcessStartMode DETACHED = const ProcessStartMode(2)
const
Detached child process with no open communication channel.
ProcessStartMode DETACHED_WITH_STDIO = const ProcessStartMode(3)
const
Detached child process with stdin, stdout and stderr still open for communication with the child.

Properties

int index
read-only