Package | Description |
---|---|
com.espertech.esper.epl.core.engineimport |
Engine import handling
|
Modifier and Type | Method and Description |
---|---|
void |
EngineImportServiceImpl.addAggregation(java.lang.String functionName,
ConfigurationPlugInAggregationFunction aggregationDesc) |
void |
EngineImportService.addAggregation(java.lang.String functionName,
ConfigurationPlugInAggregationFunction aggregationDesc)
Add an aggregation function.
|
void |
EngineImportServiceImpl.addAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction desc) |
void |
EngineImportService.addAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction desc) |
void |
EngineImportServiceImpl.addAnnotationImport(java.lang.String importName) |
void |
EngineImportService.addAnnotationImport(java.lang.String importName)
Add an import for annotation-only use, such as "com.mypackage.*" or "com.mypackage.MyClass".
|
void |
EngineImportServiceImpl.addImport(java.lang.String importName) |
void |
EngineImportService.addImport(java.lang.String importName)
Add an import, such as "com.mypackage.*" or "com.mypackage.MyClass".
|
void |
EngineImportServiceImpl.addSingleRow(java.lang.String functionName,
java.lang.String singleRowFuncClass,
java.lang.String methodName,
ConfigurationPlugInSingleRowFunction.ValueCache valueCache,
ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable,
boolean rethrowExceptions,
java.lang.String optionalEventTypeName) |
void |
EngineImportService.addSingleRow(java.lang.String functionName,
java.lang.String singleRowFuncClass,
java.lang.String methodName,
ConfigurationPlugInSingleRowFunction.ValueCache valueCache,
ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable,
boolean rethrowExceptions,
java.lang.String optionalEventTypeName)
Add an single-row function.
|
AdvancedIndexFactoryProvider |
EngineImportServiceImpl.resolveAdvancedIndexProvider(java.lang.String indexTypeName) |
AdvancedIndexFactoryProvider |
EngineImportService.resolveAdvancedIndexProvider(java.lang.String indexTypeName) |
AggregationFunctionFactory |
EngineImportServiceImpl.resolveAggregationFactory(java.lang.String name) |
AggregationFunctionFactory |
EngineImportService.resolveAggregationFactory(java.lang.String functionName)
Used at statement compile-time to try and resolve a given function name into an
aggregation method.
|
java.lang.Class |
EngineImportServiceImpl.resolveAnnotation(java.lang.String className) |
java.lang.Class |
EngineImportService.resolveAnnotation(java.lang.String className)
Resolves a given class name, either fully qualified and simple and imported to a annotation.
|
java.lang.Class |
EngineImportServiceImpl.resolveClass(java.lang.String className,
boolean forAnnotation) |
java.lang.Class |
EngineImportService.resolveClass(java.lang.String className,
boolean forAnnotation)
Resolves a given class name, either fully qualified and simple and imported to a class.
|
java.lang.reflect.Constructor |
EngineImportServiceImpl.resolveCtor(java.lang.Class clazz,
java.lang.Class[] paramTypes) |
java.lang.reflect.Constructor |
EngineImportService.resolveCtor(java.lang.Class clazz,
java.lang.Class[] paramTypes)
Resolves a constructor matching list of parameter types.
|
java.lang.reflect.Method |
EngineImportServiceImpl.resolveMethod(java.lang.Class clazz,
java.lang.String methodName,
java.lang.Class[] paramTypes,
boolean[] allowEventBeanType,
boolean[] allowEventBeanCollType) |
java.lang.reflect.Method |
EngineImportService.resolveMethod(java.lang.Class clazz,
java.lang.String methodName,
java.lang.Class[] paramTypes,
boolean[] allowEventBeanType,
boolean[] allowEventBeanCollType)
Resolves a given method name and list of parameter types to an instance or static method exposed by the given class.
|
java.lang.reflect.Method |
EngineImportServiceImpl.resolveMethodOverloadChecked(java.lang.Class clazz,
java.lang.String methodName) |
java.lang.reflect.Method |
EngineImportService.resolveMethodOverloadChecked(java.lang.Class clazz,
java.lang.String methodName) |
java.lang.reflect.Method |
EngineImportServiceImpl.resolveMethodOverloadChecked(java.lang.String className,
java.lang.String methodName) |
java.lang.reflect.Method |
EngineImportService.resolveMethodOverloadChecked(java.lang.String className,
java.lang.String methodName)
Resolves a given class and method name to a static method, expecting the method to exist
exactly once and not be overloaded, with any parameters.
|
java.lang.reflect.Method |
EngineImportServiceImpl.resolveMethodOverloadChecked(java.lang.String className,
java.lang.String methodName,
java.lang.Class[] paramTypes,
boolean[] allowEventBeanType,
boolean[] allowEventBeanCollType) |
java.lang.reflect.Method |
EngineImportService.resolveMethodOverloadChecked(java.lang.String className,
java.lang.String methodName,
java.lang.Class[] paramTypes,
boolean[] allowEventBeanType,
boolean[] allowEventBeanCollType)
Resolves a given class, method and list of parameter types to a static method.
|
java.lang.reflect.Method |
EngineImportServiceImpl.resolveNonStaticMethodOverloadChecked(java.lang.Class clazz,
java.lang.String methodName) |
java.lang.reflect.Method |
EngineImportService.resolveNonStaticMethodOverloadChecked(java.lang.Class clazz,
java.lang.String methodName)
Resolves a given class and method name to a non-static method, expecting the method to exist
exactly once and not be overloaded, with any parameters.
|
Pair<java.lang.Class,EngineImportSingleRowDesc> |
EngineImportServiceImpl.resolveSingleRow(java.lang.String name) |
Pair<java.lang.Class,EngineImportSingleRowDesc> |
EngineImportService.resolveSingleRow(java.lang.String functionName)
Used at statement compile-time to try and resolve a given function name into an
single-row function.
|