Interface FunctionLoop
-
- All Known Implementing Classes:
FunctionLoopImpl
public interface FunctionLoopExecutes theFunctionStateinstances.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelegateFunction(FunctionState function)Delegates theFunctionStateto the appropriateTeamto execute.voidexecuteFunction(FunctionState function)Executes theFunctionStatewithin the currentThread.
-
-
-
Method Detail
-
executeFunction
void executeFunction(FunctionState function)
Executes theFunctionStatewithin the currentThread.- Parameters:
function-FunctionStateto execute.
-
delegateFunction
void delegateFunction(FunctionState function)
Delegates theFunctionStateto the appropriateTeamto execute.- Parameters:
function-FunctionStateto delegate to aTeam.
-
-