DataOpcode enum
The stream a binary data frame belongs to, encoded as the msgType byte of
the data-frame header.
Values
- stdin → const DataOpcode
-
Client → node: standard input bytes (
0x01).const DataOpcode(0x01) - stdout → const DataOpcode
-
Node → client: standard output bytes (
0x02).const DataOpcode(0x02) - stderr → const DataOpcode
-
Node → client: standard error bytes (
0x03).const DataOpcode(0x03)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- wire → int
-
The on-wire byte value.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromWire(
int value) → DataOpcode -
Resolves a DataOpcode from its on-wire byte
value.
Constants
-
values
→ const List<
DataOpcode> - A constant List of the values in this enum, in order of their declaration.