Multi-threading Functions

Options
Hi - Can functions be kicked off as parallel threads?  Essentially if I have a task that returns a list of objects, and I want a function to run for each item in the list, but I don't want to wait for the first item in the list to complete to start the second, and so on.  Right now the Loops are all waterfall and I can't see how to have multiple threads of the same function running.

Comments

  • Michael Udinski
    Michael Udinski Administrator

    ADMIN

    Options
     this is currently supported. However, I've seen a workaround where you can call an API endpoint through the external API Request and set the timeout very low. This way the timeout would be reached and the loop moves onto the next iteration but the API call is already "triggered"