Running two microflows in the background

0
Hi,  I tried using ‘executeMicroflowInBackground’ Java action from CommunityCommons app store module, but according to it’s documentation: “Invocations to this method are guaranteed to be run in FIFO order, only one microflow is run at a time. “ Is there a way to run two different microflows in the background at the same time? Thanks in advance
asked
3 answers
1

In Mendix 9 you can use the built-in Task Queue for this. You can assign a number of threads that execute a microflow asynchronously.

In Mendix 8 there’s an app store module available for this, but I would recommend upgrading and doing so in Mendix 9 if at all possible.

answered
1

Hi, you can schedule microflows by using scheduled event for microflow run in bg of app.

Hope it will help.

 

Regards.

Kirti

answered
0

If you are using Mendix 8 have a look at the Process Queue module. You can use this to run microflows in parallel in the background to process queued data. 
https://docs.mendix.com/appstore/modules/process-queue

In Mendix 9 this has been superceeded by the Task Queue.
https://docs.mendix.com/refguide/task-queue

Hope this helps.

answered