in my scenario i need to schedule a chain of tasks. e.g. task a, b and c should start running at 1 o'clock but in the order ive inserted them. task a should start at 1 o'clock and task b should start after task a is finished, whenever that may be. Task c also starts only after task b has finished.
I would have hoped that springs Taskscheduler could just schedule a list of runnables, but i can only schedule on Runnable :
taskScheduler.schedule(task, cronTrigger()));
How can i do something like this :
taskScheduler.schedule(taskList, cronTrigger()));
Any idea?