StreamChannelStdio class
- Mixed-in types
-
- StreamChannelMixin<
Uint8List>
- StreamChannelMixin<
Constructors
- StreamChannelStdio.currentProcess()
-
Used when you want to hook into the stdio of THIS process.
factory
-
StreamChannelStdio.otherProcess(Stream<
List< stdout, IOSink stdin)int> > -
Used when you want to hook into the stdio of ANOTHER process
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
sink
→ StreamSink<
Uint8List> -
The sink for sending values to the other endpoint.
no setteroverride
-
stream
→ Stream<
Uint8List> -
The single-subscription stream that emits values from the other endpoint.
no setteroverride
Methods
-
cast<
S> () → StreamChannel< S> -
Returns a copy of this with the generic type coerced to
S.inherited -
changeSink(
StreamSink< Uint8List> change(StreamSink<Uint8List> )) → StreamChannel<Uint8List> -
Returns a copy of this with sink replaced by
change's return value.inherited -
changeStream(
Stream< Uint8List> change(Stream<Uint8List> )) → StreamChannel<Uint8List> -
Returns a copy of this with stream replaced by
change's return value.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pipe(
StreamChannel< Uint8List> other) → void -
Connects this to
other, so that any values emitted by either are sent directly to the other.inherited -
toString(
) → String -
A string representation of this object.
inherited
-
transform<
S> (StreamChannelTransformer< S, Uint8List> transformer) → StreamChannel<S> -
Transforms this using
transformer.inherited -
transformSink(
StreamSinkTransformer< Uint8List, Uint8List> transformer) → StreamChannel<Uint8List> -
Transforms only the sink component of this using
transformer.inherited -
transformStream(
StreamTransformer< Uint8List, Uint8List> transformer) → StreamChannel<Uint8List> -
Transforms only the stream component of this using
transformer.inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited