Interface FlowMetaData
-
- All Known Implementing Classes:
FlowMetaDataImpl
public interface FlowMetaData
Meta-data of aFlow
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedFunctionMetaData<?,?>
getInitialFunctionMetaData()
boolean
isSpawnThreadState()
Indicates whether theFlow
should be instigated within a spawnedThreadState
.
-
-
-
Method Detail
-
getInitialFunctionMetaData
ManagedFunctionMetaData<?,?> getInitialFunctionMetaData()
- Returns:
ManagedFunctionMetaData
of the initialManagedFunction
within theFlow
.
-
isSpawnThreadState
boolean isSpawnThreadState()
Indicates whether theFlow
should be instigated within a spawnedThreadState
.- Returns:
true
to execute theFlow
within a spawnedThreadState
.
-
-