Class MethodManagedFunctionBuilderUtil.MethodResult
- java.lang.Object
-
- net.officefloor.compile.test.managedfunction.clazz.MethodManagedFunctionBuilderUtil.MethodResult
-
- Enclosing class:
- MethodManagedFunctionBuilderUtil
public static class MethodManagedFunctionBuilderUtil.MethodResult extends java.lang.Object
Result of running theManagedFunction
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MockAsynchronousFlow[]
getAsynchronousFlows()
Obtains the createdAsynchronousFlow
in running theManagedFunction
.java.lang.Runnable[]
getExecutorRunnables()
Obtains theRunnable
instances passed to theExecutor
.java.lang.Throwable
getFailure()
Obtains the possible failure.java.lang.Object
getReturnValue()
Obtains the return value.
-
-
-
Method Detail
-
getReturnValue
public java.lang.Object getReturnValue()
Obtains the return value.- Returns:
- Return value.
-
getFailure
public java.lang.Throwable getFailure()
Obtains the possible failure.- Returns:
- Possible failure.
-
getAsynchronousFlows
public MockAsynchronousFlow[] getAsynchronousFlows()
Obtains the createdAsynchronousFlow
in running theManagedFunction
.- Returns:
- Created
AsynchronousFlow
in running theManagedFunction
.
-
getExecutorRunnables
public java.lang.Runnable[] getExecutorRunnables()
Obtains theRunnable
instances passed to theExecutor
.- Returns:
Runnable
instances passed to theExecutor
.
-
-