Disallow concurrent execution/ queue the Microflow execution

0
Dear experts  For microflow concurrency, I checked ‘disallowed concurrent execution’, when concurrent execution happens, I don’t want it to show error message, just queue the execution, execute it again after previous execution completed. Is it possible?
asked
2 answers
0

Set up the queuing mechanism of https://appstore.home.mendix.com/link/app/106628/.

Now switch the radiobutton from Error message to Microflow, name it xyz for instance. In the microflow xyz add your original microflow to the queue. 

answered
0

I havnt used the queue module suggested by Tim.

But I have done similar thing using process queue with queue size set to 1. 

  1. It can take QueuedAction parameter, so you can associate queuedaction to your object
  2. When clicking the action button to trigger the microflow, you could initiate the queued action link with the object and schedule to the queue
  3. Given the queue size is 1, it will execute sequentially 1 after another
answered