public interface DataflowWriteChannel<T>
| Modifier and Type | Method and Description |
|---|---|
void |
bind(T value)
Assigns a value to the variable.
|
DataflowWriteChannel<T> |
leftShift(DataflowReadChannel<T> ref)
Assigns a value from one DataflowVariable instance to this variable.
|
DataflowWriteChannel<T> |
leftShift(T value)
Assigns a value to the variable.
|
DataflowWriteChannel<T> leftShift(T value)
value - The value to assignvoid bind(T value)
value - The value to assignDataflowWriteChannel<T> leftShift(DataflowReadChannel<T> ref)
ref - The DataflowVariable instance the value of which to bind