-1

Currently I have a task that run every 5 minute. what I want is to have that task rerun every time it is completed with 1 minute delay.

what I have in mind is to create multiple task, task A and task B. task B will run after task A complete and vice versa. But not sure how to execute that.

TylerH
  • 20,799
  • 66
  • 75
  • 101
pckreatif
  • 49
  • 5
  • Why don't you add them as different actions of a single task? This way, the second one starts when the first one is finished. The delay can be a part of the first action. – Mahdi Jun 20 '17 at 10:35
  • I see so I combined everything, and add loop in the program with the delay – pckreatif Jul 06 '17 at 02:59

1 Answers1

0

I have found a workaround for my situation. what I do is create loop for task A to run followed by task B with delay in between.

pckreatif
  • 49
  • 5