Codeable Merger
Functions
getInput (input : Int) → item : Struct<Item>
Returns the next item in the given input queue.
Details
Flags |
RuntimeSync RuntimeParallel MemberFunc |
Display Name |
Get Input |
| Name | Type | Description |
|---|---|---|
Input |
Int |
The index of the input queue you want to check (0 = right, 1 = middle, 2 = left) |
| Name | Type | Description |
|---|---|---|
Item |
Struct<Item> |
The next item in the input queue. |
transferItem (input : Int) → transfered : Bool
Allows to transfer an item from the given input queue to the output queue if possible.
Details
Flags |
RuntimeSync RuntimeParallel MemberFunc |
Display Name |
Transfer Item |
| Name | Type | Description |
|---|---|---|
Input |
Int |
The index of the input queue you want to transfer the next item to the output queue. (0 = right, 1 = middle, 2 = left) |
| Name | Type | Description |
|---|---|---|
Transfered |
Bool |
true if it was able to transfer the item. |