The CreatorCon Call for Content is officially open! Get started here.

Cancel Wait for Condition on Flow Designer if wait for duration ends

frank121
Kilo Sage

Hi all, 

I am trying to figure out a way to create a wait for condition in flow designer but have a wait for a duration flow logic attached so that if the condition hits the duration timer will stop and essentially be skipped BUT if the condition never hits and the duration timer runs out then the wait for condition gets skipped and the next condition i put in the flow runs.

I can easily do this in the workflow module by creating a wait for condition in one avenue and a timer in another avenue. Once the wait for condition hits then the timer gets skipped OR if the timer runs out the wait for condition gets skipped. Attached is the workflow i use

Right now in the flow designer if the wait for condition gets hit then the timer still keeps running and if the timer finishes the wait for condition still waits for the condition. Im trying to skip the either one of these based off of which one hits first. Any thoughts on how to do this in flow designer. I am currently using a run workflow flow logic in the flow designer to do this but would be pretty happy to do it all in flow designer. Thanks.

1 ACCEPTED SOLUTION

Hi,

Correct. Adding a "End" action will end the entire flow, so that will not be an option.

I believe you could implement this by adding the "Wait for condition" and add a timeout on the condition. See example below.

View solution in original post

5 REPLIES 5

Kona LeDude
Kilo Guru

Hey Frank,

 

You can utilize the "Do the following in Parallel" flow logic along with the "End" for terminating the parallel process. Do the following in ParallelEnd flow logic.

 

Best,

If i add a end flow logic to the end of it wont the whole flow end then? What if i want to the flow to keep going or update something else after the conditions are either met or ran out of time?

Hi,

Correct. Adding a "End" action will end the entire flow, so that will not be an option.

I believe you could implement this by adding the "Wait for condition" and add a timeout on the condition. See example below.

I think this would be the best option to use here. I dont ever remember seeing this option for the wait for condition action but that will work for what i am trying to do. Thank you.