Interface FunctionFlowNode
-
- All Superinterfaces:
FunctionFlow
,LinkFlowNode
,Node
- All Known Implementing Classes:
FunctionFlowNodeImpl
public interface FunctionFlowNode extends LinkFlowNode, FunctionFlow
FunctionFlow
node.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialise()
Initialises theFunctionFlowNode
.boolean
isSpawnThreadState()
Indicates whether to spawn aThreadState
for thisFunctionFlow
.void
setSpawnThreadState(boolean isSpawnThreadState)
Specifies whether to spawn aThreadState
for thisFunctionFlow
.-
Methods inherited from interface net.officefloor.compile.spi.section.FunctionFlow
getFunctionFlowName
-
Methods inherited from interface net.officefloor.compile.internal.structure.LinkFlowNode
getLinkedFlowNode, linkFlowNode
-
Methods inherited from interface net.officefloor.compile.internal.structure.Node
getChildNodes, getLocation, getNodeName, getNodeType, getParentNode, getQualifiedName, getQualifiedName, isInitialised
-
-
-
-
Field Detail
-
TYPE
static final java.lang.String TYPE
Node
type.- See Also:
- Constant Field Values
-
-
Method Detail
-
initialise
void initialise()
Initialises theFunctionFlowNode
.
-
isSpawnThreadState
boolean isSpawnThreadState()
Indicates whether to spawn aThreadState
for thisFunctionFlow
.- Returns:
true
to spawn aThreadState
for thisFunctionFlow
.
-
setSpawnThreadState
void setSpawnThreadState(boolean isSpawnThreadState)
Specifies whether to spawn aThreadState
for thisFunctionFlow
.- Parameters:
isSpawnThreadState
-true
to spawn aThreadState
for thisFunctionFlow
.
-
-