Page 1 of 1

Trigering Events - Cyclic

Posted: Mon Jan 21, 2013 6:43 am
by lhervaud
It will be interesting to exclude a time period in cyclic events.
Typically exclude some task when servers reboots (ex : in the night when windows update is applied).
It will also a good general option to exclude all the tasks of robotask.

Trigering Events - Cyclic

Posted: Mon Jan 21, 2013 7:27 am
by Oleg
There is Cyclic triggering event for this purpose.
Read more here, please.

Just attach this event to the task and specify necessary period

Trigering Events - Cyclic

Posted: Mon Jan 21, 2013 8:08 am
by lhervaud
But it's not possible to combine cyclic and scheduler ?
How have a task cyclic (ex 60 sec) except from 2am to 4am ?

Trigering Events - Cyclic

Posted: Mon Jan 21, 2013 10:07 am
by Oleg
There are not general timetable for task triggers.
I wrote this into our ToDo, thank you.

But now you can put at the beginning of the task such steps:

If {Time}<2:00 then
   break
end if
If {Time}>4:00 then
   break
end if
....
other steps
....

So main algorithm of the task will be executed if if time only between 2:00 and 4:00