Package com.mendix.core.actionmanagement
Interface MicroflowCallBuilder
-
public interface MicroflowCallBuilder
Provides a builder for building a microflow call. The builder can be used to add arguments and eventually call the microflow.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <R> R
execute(IContext context)
MicroflowCallBuilder
inTransaction(boolean executeInTransaction)
MicroflowCallBuilder
withParam(java.lang.String name, java.lang.Object value)
default MicroflowCallBuilder
withParams(java.util.Map<java.lang.String,java.lang.Object> params)
Adds multiples parameters to the microflow call.
-
-
-
Method Detail
-
withParam
MicroflowCallBuilder withParam(java.lang.String name, java.lang.Object value)
-
withParams
default MicroflowCallBuilder withParams(java.util.Map<java.lang.String,java.lang.Object> params)
Adds multiples parameters to the microflow call.- Parameters:
params
- the parameters to add- Returns:
- the updated builder
-
inTransaction
MicroflowCallBuilder inTransaction(boolean executeInTransaction)
-
execute
<R> R execute(IContext context)
-
-