Small scheduler application in Java.
Open config.properties file;
You can either change an existing property “list_of_tasks”, or comment (//) and create another one;
The syntax for creating a unique task with no dependency in the list is:
Fibonacci46:60,0);
The syntax for creating a task with 1 or more parallel dependencies.
SortingCreateArrays:60,5)SortingBubble--SortingInsertion;
The syntax for creating a task with 1 or more sequential dependencies.
BitcoinInfo:120,10)BitcoinPrice:5->BitcoinEvaluate;
The syntax to run more than one father task in parallel.
SortingCreateArrays:60,5)SortingBubble;Fibonacci45:0,10);Fibonacci46:0,10);
You cannot have a father task with sequential “->“ and parallel “—“ dependencies.
BitcoinInfo:120,10)BitcoinPrice:5->BitcoinEvaluate--Fibonacci46;