org.syrup.functions |
Provides the most used Syrup Functions..
|
Java Source File Name | Type | Comment |
Abort.java | Class | Copies the first or second input to the first output but if the second input is full, all Link connections will be broken afterwards. |
Alarm.java | Class | Waits for specific date/time to pass and then raises an alarm. |
BShell.java | Class | Executes a shell command, provided by the first input, using a BlobServer.
The second input provides the stdin. |
Concat.java | Class | Concatenates the first and second input (like UNIX cat) to the first output. |
Constant.java | Class | Copies the first input to the first output without consuming the first input. |
Duplicate.java | Class | Duplicates either the first or second input to both first and second output.
If both first and second input are filled, it will copy the first input to
the first output and leaves the second input. |
Finish.java | Class | Checks if the Task that is connected to the first input is done and if not,
the first input will be copied to the first output. |
Flip.java | Class | Flips the first input in such a way that if the first input is 0, the first
output will be 1. |
Initiate.java | Class | Copies the first input to the second output while it replaces it with a
Duplicate Task. |
Launch.java | Class | Takes a XML Workflow description and returns a WorkFlow. |
Null.java | Class | Passes the first input to the first output and the second input to the second
output. |
Shell.java | Class | Executes a shell command provided by the first input. |
Split.java | Class | Takes the first input and splits the head of the first input to the first output and the tail to
the second output. |