Loop

Hello,

I want to stop process till some conditions are met, after that want to continue process.

i saw that, but its not good for perfomance wise, since it will strain cpu, since loop might continue maximum for month, any other idea? trying to stop process with script but its not working either, its getting stuck.

1 Like

Hi @someneedforspeed,

So you want to pause the process unti some conditions met?

1 Like

Hi @TaQuangKhoi
Yes, i tried many things but still no result, im open to any ideas to try :grimacing:

1 Like

@someneedforspeed What is your conditon? Is it based on a a boolean value on database?

1 Like

@TaQuangKhoi Sorry, i was out of touch :fearful: so condition is like for example: caseVariable is null and once its filled with some text, i want it to continue…

1 Like

i would use iteration kind that is on documentation, but its not good to do for month, Done tasks are accumulated 200k + and its straining cpu :joy:

1 Like

Your system will check caseVariable A in an interval like 1 hour.
If A == null => wait more 1 hour to check again
else => do some stuffs

1 Like

@TaQuangKhoi you mean timer?

Well i went with boundary message catch method. thanks for help tho

1 Like

This topic was automatically closed 2 hours after the last reply. New replies are no longer allowed.