Package | Description |
---|---|
com.espertech.esper.client |
This package and its sub-packages defines the central Esper Client APIs.
|
com.espertech.esper.core.service |
Implementation of client package interfaces, glue code
|
com.espertech.esper.event |
This package defines the internal event APIs.
|
com.espertech.esper.event.bean |
JavaBean and legacy Java underlying event classes are here.
|
Modifier and Type | Field and Description |
---|---|
protected Map<String,ConfigurationEventTypeLegacy> |
Configuration.eventTypesLegacy
Map of event type name and Legacy-type event configuration.
|
Modifier and Type | Method and Description |
---|---|
Map<String,ConfigurationEventTypeLegacy> |
ConfigurationInformation.getEventTypesLegacy()
Returns the mapping of event type name to legacy java event type information.
|
Map<String,ConfigurationEventTypeLegacy> |
Configuration.getEventTypesLegacy() |
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationOperations.addEventType(String eventTypeName,
String eventClass,
ConfigurationEventTypeLegacy legacyEventTypeDesc)
Add an name for an event type that represents legacy Java type (non-JavaBean style) events.
|
void |
Configuration.addEventType(String eventTypeName,
String eventClass,
ConfigurationEventTypeLegacy legacyEventTypeDesc)
Add an name for an event type that represents legacy Java type (non-JavaBean style) events.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationOperationsImpl.addEventType(String eventTypeName,
String eventClass,
ConfigurationEventTypeLegacy legacyEventTypeDesc) |
Modifier and Type | Method and Description |
---|---|
ConfigurationEventTypeLegacy |
EventAdapterServiceImpl.getClassLegacyConfigs(String className) |
ConfigurationEventTypeLegacy |
EventAdapterService.getClassLegacyConfigs(String className)
Returns the configured legacy Java class information or null if none defined.
|
Modifier and Type | Method and Description |
---|---|
void |
EventAdapterServiceImpl.setClassLegacyConfigs(Map<String,ConfigurationEventTypeLegacy> classToLegacyConfigs)
Set the legacy Java class type information.
|
void |
EventAdapterService.setClassLegacyConfigs(Map<String,ConfigurationEventTypeLegacy> classLegacyInfo)
Sets the configured legacy Java class information.
|
Modifier and Type | Method and Description |
---|---|
ConfigurationEventTypeLegacy |
BeanEventAdapter.getClassToLegacyConfigs(String className) |
ConfigurationEventTypeLegacy |
BeanEventType.getOptionalLegacyDef() |
Modifier and Type | Method and Description |
---|---|
static PropertyListBuilder |
PropertyListBuilderFactory.createBuilder(ConfigurationEventTypeLegacy optionalLegacyClassConfigs)
Creates an implementation for a builer considering the accessor style and
code generation flags for a given class.
|
protected static void |
PropertyListBuilderExplicit.getExplicitProperties(List<InternalEventPropDescriptor> result,
Class clazz,
ConfigurationEventTypeLegacy legacyConfig)
Populates explicitly-defined properties into the result list.
|
Modifier and Type | Method and Description |
---|---|
void |
BeanEventAdapter.setClassToLegacyConfigs(Map<String,ConfigurationEventTypeLegacy> classToLegacyConfigs)
Set the additional mappings for legacy classes.
|
Constructor and Description |
---|
BeanEventType(EventTypeMetadata metadata,
int eventTypeId,
Class clazz,
EventAdapterService eventAdapterService,
ConfigurationEventTypeLegacy optionalLegacyDef)
Constructor takes a java bean class as an argument.
|
PropertyListBuilderExplicit(ConfigurationEventTypeLegacy legacyConfig)
Ctor.
|
PropertyListBuilderJavaBean(ConfigurationEventTypeLegacy optionalLegacyConfig)
Ctor.
|
PropertyListBuilderPublic(ConfigurationEventTypeLegacy legacyConfig)
Ctor.
|