In the Modeler how do I say a piece of code should run in the background?

0
The instructions of a Modeler are run sequentially (what makes total sense). But can I say that some actions should run in the background, concurrently with the rest of the logic? Let's say that a user request to the server starts some piece of logic, but I want that logic to run in the background, without blocking the current request.
asked
1 answers
3

Community Commons Module from the appstore has the option to add a microflow execution to a queue.. Note that the que is for the application not for the microflow itself, so it will be executed once it's time (this may take a while if a lot of requests are added to the queue)

answered