I need to configure dependencies between job/task on another job/task.
Examples of dependencies I need to configure are:
1) Task 5 in Job A is dependent on Task 4 in Job B
(Task 5 in Job A will wait till Task 4 in Job B has completed successfully. This involves setting up polling at Task level)
I tried adding Condition of Type VisualCron/Variable, but the condition gets evaluated ONLY once. I would like Task 9 in Job A to keep polling at regular intervals for successful completion of Task 4 in Job B.
How can I achieve this?
2) Task 5 in Job A is dependent on Task 2 in Job A (i.e. not dependent on its immediate processor)
Can I use Condition to configure this?
3) Task 5 in Job A is dependent on multiple tasks within Job A
Can I use Condition to configure this?
4) Task 5 in Job A is dependent on multiple tasks outside Job A
Similar to use case (1) but polling involves multiple tasks. How can I achieve this?
5) Job B is dependent on Job A or multiple jobs, e.g. Job A and Job C
Again, this involves polling one or more jobs for completion before starting Job A.
Can I use Trigger to achieve this?