Class FlowMetaDataImpl
- java.lang.Object
-
- net.officefloor.frame.impl.execute.flow.FlowMetaDataImpl
-
- All Implemented Interfaces:
FlowMetaData
public class FlowMetaDataImpl extends java.lang.Object implements FlowMetaData
Implementation of theFlowMetaData.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description FlowMetaDataImpl(boolean isSpawnThreadState, ManagedFunctionMetaData<?,?> initialFunctionMetaData)Initiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ManagedFunctionMetaData<?,?>getInitialFunctionMetaData()booleanisSpawnThreadState()Indicates whether theFlowshould be instigated within a spawnedThreadState.
-
-
-
Constructor Detail
-
FlowMetaDataImpl
public FlowMetaDataImpl(boolean isSpawnThreadState, ManagedFunctionMetaData<?,?> initialFunctionMetaData)Initiate.- Parameters:
isSpawnThreadState- Indicates whether theFlowshould be instigated in a spawnedThreadState.initialFunctionMetaData-ManagedFunctionMetaDataof the initialManagedFunctionof theFlow.
-
-
Method Detail
-
getInitialFunctionMetaData
public ManagedFunctionMetaData<?,?> getInitialFunctionMetaData()
Description copied from interface:FlowMetaData- Specified by:
getInitialFunctionMetaDatain interfaceFlowMetaData- Returns:
ManagedFunctionMetaDataof the initialManagedFunctionwithin theFlow.
-
isSpawnThreadState
public boolean isSpawnThreadState()
Description copied from interface:FlowMetaDataIndicates whether theFlowshould be instigated within a spawnedThreadState.- Specified by:
isSpawnThreadStatein interfaceFlowMetaData- Returns:
trueto execute theFlowwithin a spawnedThreadState.
-
-