Mendix Community
Published in

Mendix Community

The new way to call Mendix microflows from Java actions

Let’s have a look at a couple of practical examples.

// BEGIN USER CODEcom.mendix.core.Core.microflowCall("TestCallingJava.SUB_ShowMessageCount").inTransaction(true).withParam("Name", "Donald").withParam("MessageCount", "1234").execute(this.getContext());return null;// END USER CODE
Donald sees this message.
// BEGIN USER CODEjava.util.Map<String, Object> params = new java.util.HashMap<>();params.put("Name", "Boris");params.put("MessageCount", 3);com.mendix.core.Core.microflowCall("TestCallingJava.SUB_ShowMessageCount").inTransaction(true).withParams(params).execute(this.getContext());return null;// END USER CODE
Boris sees this message.

In summary

--

--

The community-sourced publication for low-code

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Robert Price

With over 20 years of industry experience, Rob is primarily focused on delivering low code solutions using the Mendix platform. Find him at robertprice.co.uk