Equivalent to javascript setTimeout to use in a nanoflow

1
Hi everyone, I’m need to implement a delay between one step of my flow, and the next, as something similar to the javascript method “setTimeout”.  To work more or less like this logic: start event -> Action 1 -> setTimeout(3s) -> Action 2 -> end event Is there a way to do this inside a nanoflow? obs: i’m working in a native mobile app.
asked
3 answers
3

Use 'wait' in a nanoflow (Nanoflow Commons) and 'delay' in a microflow (CommunityCommons) 

answered
1

Try the “Delay” action in Nanoflow Commons

answered
1

UPDATE:

I managed to do it by addin a Microflow Call, inside my nanoflow, then using the “Delay” action (wich is only avaliable for MICROFLOWS, no Nanos)

Thanks everyone, anyways!

 

UPDATE 2:
- As mentioned by Robert Price in the comments, its enought to use “Wait” action (from Nanoflows) that does the exact same thing as “Delay” (from Microflows), so no need to mix up the two. Just do it everything inside the Nanoflow.

answered