Interface FunctionLoop
-
- All Known Implementing Classes:
FunctionLoopImpl
public interface FunctionLoop
Executes theFunctionState
instances.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delegateFunction(FunctionState function)
Delegates theFunctionState
to the appropriateTeam
to execute.void
executeFunction(FunctionState function)
Executes theFunctionState
within the currentThread
.
-
-
-
Method Detail
-
executeFunction
void executeFunction(FunctionState function)
Executes theFunctionState
within the currentThread
.- Parameters:
function
-FunctionState
to execute.
-
delegateFunction
void delegateFunction(FunctionState function)
Delegates theFunctionState
to the appropriateTeam
to execute.- Parameters:
function
-FunctionState
to delegate to aTeam
.
-
-