Class AbstractFunctionState
- java.lang.Object
-
- net.officefloor.frame.impl.execute.linkedlistset.AbstractLinkedListSetEntry<FunctionState,Flow>
-
- net.officefloor.frame.impl.execute.function.AbstractFunctionState
-
- All Implemented Interfaces:
FunctionState
,LinkedListSetEntry<FunctionState,Flow>
public abstract class AbstractFunctionState extends AbstractLinkedListSetEntry<FunctionState,Flow> implements FunctionState
AbstractFunctionState
.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description AbstractFunctionState(ThreadState threadState)
Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThreadState
getThreadState()
Obtains theThreadState
for thisFunctionState
.-
Methods inherited from class net.officefloor.frame.impl.execute.linkedlistset.AbstractLinkedListSetEntry
getNext, getPrev, setNext, setPrev
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.officefloor.frame.internal.structure.FunctionState
cancel, execute, getLinkedListSetOwner, getResponsibleTeam, handleEscalation, isRequireThreadStateSafety
-
Methods inherited from interface net.officefloor.frame.internal.structure.LinkedListSetEntry
getNext, getPrev, setNext, setPrev
-
-
-
-
Constructor Detail
-
AbstractFunctionState
public AbstractFunctionState(ThreadState threadState)
Instantiate.- Parameters:
threadState
-ThreadState
.
-
-
Method Detail
-
getThreadState
public ThreadState getThreadState()
Description copied from interface:FunctionState
Obtains the
ThreadState
for thisFunctionState
.This provides access to the
ThreadState
that thisFunctionState
resides within.- Specified by:
getThreadState
in interfaceFunctionState
- Returns:
ThreadState
for thisFunctionState
.
-
-