Interface ManagedFunctionLogic
-
- All Known Implementing Classes:
AdministrationFunctionLogic,ManagedFunctionLogicImpl
public interface ManagedFunctionLogicManagedFunctionLogic.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidexecute(ManagedFunctionLogicContext context, ThreadState threadState)Executes theManagedFunctionLogic.default booleanisRequireThreadStateSafety()Indicates ifThreadStatesafety is required for thisManagedFunctionLogic.
-
-
-
Method Detail
-
isRequireThreadStateSafety
default boolean isRequireThreadStateSafety()
Indicates ifThreadStatesafety is required for thisManagedFunctionLogic.- Returns:
trueshouldThreadStatesafety be required for thisManagedFunctionLogic.
-
execute
void execute(ManagedFunctionLogicContext context, ThreadState threadState) throws java.lang.Throwable
Executes theManagedFunctionLogic.- Parameters:
context-ManagedFunctionLogicContext.threadState-ThreadStatefor theManagedFunctionLogic.- Throws:
java.lang.Throwable- Failure of logic.
-
-