Toolbox Plugin - "Script is Async Function" - Will action run sequentially?

  • I’m using the Toolbox Plugin (Toolbox Plugin | Bubble) to run a script in a Backend Workflow
  • Action afterwards is using the result of the Script

→ I need to be 100% that script will be finished before next Actions runs. Is this always the case? What is the effect of selecting “Script is async function” ?

Any help would be greatly appreciated :slight_smile:

Async = waiting for data (usually wrapped in a try/catch).

You won’t need that if your data is already ready to go.

To answer your first question, yes, your workflow logic runs asynchronously based on your order of operations.

1 … 2… 3… … … 20

1 Like