Package com.googlecode.aviator
Interface FunctionLoader
-
- All Known Implementing Classes:
ClassPathConfigFunctionLoader
public interface FunctionLoader
Function loader to load function when function not found.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AviatorFunction
onFunctionNotFound(java.lang.String name)
Invoked when function not found, The implementation must returns null when function not found.
-
-
-
Method Detail
-
onFunctionNotFound
AviatorFunction onFunctionNotFound(java.lang.String name)
Invoked when function not found, The implementation must returns null when function not found.- Parameters:
name
- function name
-
-