Package io.micronaut.function.executor
Interface FunctionExecutor<I,O>
-
- Type Parameters:
I- input typeO- output type
- All Known Implementing Classes:
AbstractFunctionExecutor
public interface FunctionExecutor<I,O>Allows executing the function configured by
.LocalFunctionRegistry.FUNCTION_NAMEOr a named function
- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Oexecute(I input)Execute the function configured byLocalFunctionRegistry.FUNCTION_NAME.
-
-
-
Method Detail
-
execute
O execute(I input)
Execute the function configured byLocalFunctionRegistry.FUNCTION_NAME.- Parameters:
input- The input- Returns:
- The output
-
-