Interface FlowCompletion
-
- All Superinterfaces:
LinkedListSetEntry<FlowCompletion,ManagedFunctionContainer>
public interface FlowCompletion extends LinkedListSetEntry<FlowCompletion,ManagedFunctionContainer>
Handler for the completion of theFlow
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionState
flowComplete(java.lang.Throwable escalation)
Obtains theFunctionState
to notify completion of theFlow
.-
Methods inherited from interface net.officefloor.frame.internal.structure.LinkedListSetEntry
getLinkedListSetOwner, getNext, getPrev, setNext, setPrev
-
-
-
-
Method Detail
-
flowComplete
FunctionState flowComplete(java.lang.Throwable escalation)
Obtains theFunctionState
to notify completion of theFlow
.- Parameters:
escalation
- PossibleEscalation
from theFlow
. Will benull
ifFlow
completed withoutEscalation
.- Returns:
FunctionState
to notify completion of theFlow
.
-
-