Interface MethodManagedFunctionBuilderUtil.ManagedFunctionContextBuilder
-
- Enclosing class:
- MethodManagedFunctionBuilderUtil
public static interface MethodManagedFunctionBuilderUtil.ManagedFunctionContextBuilder
Builds theManagedFunctionContext
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setFlow(int flowIndex, MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler handler)
Specifies theMethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
forFlow
index.void
setFlow(java.lang.String functionName, MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler handler)
Specifies theMethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
for invoking anotherManagedFunction
reflectively.void
setObject(int dependencyIndex, java.lang.Object object)
Specifies the object for index.
-
-
-
Method Detail
-
setObject
void setObject(int dependencyIndex, java.lang.Object object)
Specifies the object for index.- Parameters:
dependencyIndex
- Index of object.object
- Object for the index.
-
setFlow
void setFlow(int flowIndex, MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler handler)
Specifies theMethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
forFlow
index.- Parameters:
flowIndex
- Index of theFlow
.handler
-MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
for theFlow
.
-
setFlow
void setFlow(java.lang.String functionName, MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler handler)
Specifies theMethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
for invoking anotherManagedFunction
reflectively.- Parameters:
functionName
- Name of theManagedFunction
.handler
-MethodManagedFunctionBuilderUtil.ManagedFunctionFlowHandler
for theFlow
.
-
-