In a Mendx Java Action can you execute a microflow in task queue?

0
If I want to execute a microflow within a Java action I might use Core.microflowCall() or Core.executeAsync(). But neither of these have a task queue parameter. I'd like to execute a microflow in the background but have the visibility Task Queue brings to the table. I've searched the Core documentation for 'queue' and there's nothing relevant. Am I missing something - thought this would be easier to find. Much appreciated.
asked
1 answers
1

Core.microflowcall returns a microflowbuilder which subclasses from actioncallbuilder. This has a method to schedule the microflow in a taskqueue.

 

https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#microflowCall(java.lang.String)

 

https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/actionmanagement/MicroflowCallBuilder.html

 

https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/actionmanagement/ActionCallBuilder.html

answered