A common interface for all writable dataflow variables, streams or queues
Type | Name and description |
---|---|
void |
bind(T value) Assigns a value to the variable. |
DataflowWriteChannel<T> |
leftShift(T value) Assigns a value to the variable. |
DataflowWriteChannel<T> |
leftShift(DataflowReadChannel<T> ref) Assigns a value from one DataflowVariable instance to this variable. |
Assigns a value to the variable. Can only be invoked once on each instance of DataflowVariable
value
- The value to assignAssigns a value to the variable. Can only be invoked once on each instance of DataflowVariable
value
- The value to assignAssigns a value from one DataflowVariable instance to this variable. Can only be invoked once on each instance of DataflowVariable
ref
- The DataflowVariable instance the value of which to bind