ProcessMixin mixin
class MyProcess with ProcessMixin implements Process {
// Must override
@override
Process get process;
...
}
Properties
-
exitCode
→ Future<int>
-
A
Future
which completes with the exit code of the process
when the process completes.
no setteroverride
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
pid
→ int
-
The process id of the process.
no setteroverride
-
process
→ Process
-
no setter
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
stderr
→ Stream<List<int>>
-
The standard error stream of the process as a
Stream
.
no setteroverride
-
stdin
→ IOSink
-
The standard input stream of the process as an IOSink.
no setteroverride
-
stdout
→ Stream<List<int>>
-
The standard output stream of the process as a
Stream
.
no setteroverride