Uses of Class
com.espertech.esper.client.ConfigurationException

Packages that use ConfigurationException
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.epl.metric Services for metrics reporting, including global flag, repositories and threading. 
com.espertech.esper.epl.spec Contains EPL statement specification classes define the constructs that make up an EPL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
com.espertech.esper.event This package defines the internal event APIs. 
com.espertech.esper.event.vaevent Value added events are revision events and variant events. 
 

Uses of ConfigurationException in com.espertech.esper.client
 

Methods in com.espertech.esper.client that throw ConfigurationException
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.lang.Class eventClass)
          Add an name for an event type represented by Java-bean plain-old Java object events.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, ConfigurationEventTypeXMLDOM xmlDOMEventTypeDesc)
          Add an name for an event type that represents org.w3c.dom.Node events.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap)
          Add an name for an event type that represents java.util.Map events, and for which each property may itself be a Map of further properties, with unlimited nesting levels.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap, ConfigurationEventTypeMap mapConfig)
          Add a name for an event type that represents java.util.Map events, and for which each property may itself be a Map of further properties, with unlimited nesting levels.
 void Configuration.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap, ConfigurationEventTypeMap mapConfig)
           
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap, java.lang.String[] superTypes)
          Add a name for an event type that represents java.util.Map events, and for which each property may itself be a Map of further properties, with unlimited nesting levels.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.util.Properties typeMap)
          Add an event type that represents java.util.Map events.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.lang.String eventClassName)
          Add an name for an event type represented by JavaBean object events.
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes)
          Add an event type that represents Object-array (Object[]) events.
 void Configuration.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes)
           
 void ConfigurationOperations.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes, ConfigurationEventTypeObjectArray optionalConfiguration)
          Add an event type that represents Object-array (Object[]) events.
 void Configuration.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes, ConfigurationEventTypeObjectArray config)
           
 void ConfigurationOperations.addImport(java.lang.Class importClass)
          Adds a class to the list of automatically-imported classes.
 void ConfigurationOperations.addImport(java.lang.String importName)
          Adds a package or class to the list of automatically-imported classes and packages.
 void ConfigurationOperations.addPlugInAggregationFunctionFactory(java.lang.String functionName, java.lang.String aggregationFactoryClassName)
          Adds a plug-in aggregation function given a EPL function name and an aggregation factory class name.
 void Configuration.addPlugInAggregationFunctionFactory(java.lang.String functionName, java.lang.String aggregationFactoryClassName)
           
 void ConfigurationOperations.addPlugInAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction config)
          Adds a plug-in aggregation multi-function.
 void Configuration.addPlugInAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction config)
           
 void ConfigurationOperations.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName)
          Adds a plug-in single-row function given a EPL function name, a class name and a method name.
 void Configuration.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName)
           
 void ConfigurationOperations.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable)
          Adds a plug-in single-row function given a EPL function name, a class name, method name and setting for value-cache behavior.
 void Configuration.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable)
           
 void ConfigurationOperations.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache)
          Adds a plug-in single-row function given a EPL function name, a class name, method name and setting for value-cache behavior.
 void Configuration.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache)
           
 void Configuration.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable)
          Add single-row function with configurations.
 void ConfigurationOperations.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable, boolean rethrowExceptions)
          Adds a plug-in single-row function given a EPL function name, a class name, method name and setting for value-cache behavior.
 void Configuration.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable, boolean rethrowExceptions)
          Add single-row function with configurations.
 void ConfigurationOperations.addVariable(java.lang.String variableName, java.lang.Class type, java.lang.Object initializationValue)
          Add a global variable.
 void ConfigurationOperations.addVariable(java.lang.String variableName, java.lang.String type, java.lang.Object initializationValue)
          Add a global variable.
 void Configuration.addVariable(java.lang.String variableName, java.lang.String type, java.lang.Object initializationValue)
           
 void ConfigurationOperations.addVariable(java.lang.String variableName, java.lang.String type, java.lang.Object initializationValue, boolean constant)
          Add a global variable, allowing constants.
 void Configuration.addVariable(java.lang.String variableName, java.lang.String type, java.lang.Object initializationValue, boolean constant)
           
static EPServiceProvider EPServiceProviderManager.getDefaultProvider(Configuration configuration)
          Returns the default EPServiceProvider.
static EPServiceProvider EPServiceProviderManager.getProvider(java.lang.String providerURI, Configuration configuration)
          Returns an EPServiceProvider for a given provider URI.
 boolean ConfigurationOperations.removeEventType(java.lang.String name, boolean force)
          Remove an event type by its name, returning an indicator whether the event type was found and removed.
 boolean Configuration.removeEventType(java.lang.String eventTypeName, boolean force)
           
 boolean ConfigurationOperations.removeVariable(java.lang.String name, boolean force)
          Remove a global non-context-partitioned variable by its name, returning an indicator whether the variable was found and removed.
 boolean Configuration.removeVariable(java.lang.String name, boolean force)
           
 void ConfigurationOperations.replaceXMLEventType(java.lang.String xmlEventTypeName, ConfigurationEventTypeXMLDOM config)
          Rebuild the XML event type based on changed type informaton, please read below for limitations.
 void Configuration.replaceXMLEventType(java.lang.String xmlEventTypeName, ConfigurationEventTypeXMLDOM config)
           
 void ConfigurationOperations.setMetricsReportingDisabled()
          Disable engine-level metrics reporting.
 void ConfigurationOperations.setMetricsReportingEnabled()
          Enable engine-level metrics reporting.
 void ConfigurationOperations.setMetricsReportingInterval(java.lang.String stmtGroupName, long newIntervalMSec)
          Sets a new interval for metrics reporting for a pre-configured statement group, or changes the default statement reporting interval if supplying a null value for the statement group name.
 void ConfigurationOperations.setMetricsReportingStmtDisabled(java.lang.String statementName)
          Disable metrics reporting for a given statement.
 void ConfigurationOperations.setMetricsReportingStmtEnabled(java.lang.String statementName)
          Enable metrics reporting for the given statement.
 void ConfigurationOperations.updateMapEventType(java.lang.String mapeventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap)
          Updates an existing Map event type with additional properties.
 void Configuration.updateMapEventType(java.lang.String mapeventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap)
           
 

Uses of ConfigurationException in com.espertech.esper.core.service
 

Methods in com.espertech.esper.core.service that throw ConfigurationException
 void ConfigurationOperationsImpl.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap, ConfigurationEventTypeMap mapConfig)
           
 void ConfigurationOperationsImpl.addEventType(java.lang.String eventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap, java.lang.String[] superTypes)
           
 void ConfigurationOperationsImpl.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes)
           
 void ConfigurationOperationsImpl.addEventType(java.lang.String eventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes, ConfigurationEventTypeObjectArray optionalConfiguration)
           
 void ConfigurationOperationsImpl.addPlugInAggregationMultiFunction(ConfigurationPlugInAggregationMultiFunction config)
           
 void ConfigurationOperationsImpl.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName)
           
 void ConfigurationOperationsImpl.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable)
           
 void ConfigurationOperationsImpl.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache)
           
 void ConfigurationOperationsImpl.addPlugInSingleRowFunction(java.lang.String functionName, java.lang.String className, java.lang.String methodName, ConfigurationPlugInSingleRowFunction.ValueCache valueCache, ConfigurationPlugInSingleRowFunction.FilterOptimizable filterOptimizable, boolean rethrowExceptions)
           
 void ConfigurationOperationsImpl.addVariable(java.lang.String variableName, java.lang.Class type, java.lang.Object initializationValue)
           
 void ConfigurationOperationsImpl.addVariable(java.lang.String variableName, java.lang.String eventTypeName, java.lang.Object initializationValue)
           
 void ConfigurationOperationsImpl.addVariable(java.lang.String variableName, java.lang.String type, java.lang.Object initializationValue, boolean constant)
           
protected static ExceptionHandlingService EPServicesContextFactoryDefault.initExceptionHandling(java.lang.String engineURI, ConfigurationEngineDefaults.ExceptionHandling exceptionHandling, ConfigurationEngineDefaults.ConditionHandling conditionHandling)
           
 boolean ConfigurationOperationsImpl.removeEventType(java.lang.String name, boolean force)
           
 boolean ConfigurationOperationsImpl.removeVariable(java.lang.String name, boolean force)
           
 void ConfigurationOperationsImpl.replaceXMLEventType(java.lang.String xmlEventTypeName, ConfigurationEventTypeXMLDOM config)
           
 void ConfigurationOperationsImpl.updateMapEventType(java.lang.String mapeventTypeName, java.util.Map<java.lang.String,java.lang.Object> typeMap)
           
 void ConfigurationOperationsImpl.updateObjectArrayEventType(java.lang.String objectArrayEventTypeName, java.lang.String[] propertyNames, java.lang.Object[] propertyTypes)
           
 

Constructors in com.espertech.esper.core.service that throw ConfigurationException
EPServiceProviderImpl(Configuration configuration, java.lang.String engineURI, java.util.Map<java.lang.String,EPServiceProviderSPI> runtimes)
          Constructor - initializes services.
 

Uses of ConfigurationException in com.espertech.esper.epl.metric
 

Methods in com.espertech.esper.epl.metric that throw ConfigurationException
 void MetricReportingServiceImpl.setMetricsReportingStmtDisabled(java.lang.String statementName)
           
 void MetricReportingServiceImpl.setMetricsReportingStmtEnabled(java.lang.String statementName)
           
 

Uses of ConfigurationException in com.espertech.esper.epl.spec
 

Methods in com.espertech.esper.epl.spec that throw ConfigurationException
 void PluggableObjectCollection.addPatternObjects(java.util.List<ConfigurationPlugInPatternObject> configPattern)
          Add a plug-in pattern object.
 void PluggableObjectCollection.addViews(java.util.List<ConfigurationPlugInView> configurationPlugInViews, java.util.List<ConfigurationPlugInVirtualDataWindow> configurationPlugInVirtualDW)
          Add a plug-in view.
 

Uses of ConfigurationException in com.espertech.esper.event
 

Methods in com.espertech.esper.event that throw ConfigurationException
static void EventTypeUtility.validateTimestampProperties(EventType eventType, java.lang.String startTimestampProperty, java.lang.String endTimestampProperty)
           
 

Uses of ConfigurationException in com.espertech.esper.event.vaevent
 

Methods in com.espertech.esper.event.vaevent that throw ConfigurationException
 void ValueAddEventServiceImpl.addRevisionEventType(java.lang.String revisioneventTypeName, ConfigurationRevisionEventType config, EventAdapterService eventAdapterService)
           
 void ValueAddEventServiceImpl.addVariantStream(java.lang.String variantStreamname, ConfigurationVariantStream variantStreamConfig, EventAdapterService eventAdapterService, EventTypeIdGenerator eventTypeIdGenerator)
           
 void ValueAddEventService.addVariantStream(java.lang.String variantEventTypeName, ConfigurationVariantStream variantStreamConfig, EventAdapterService eventAdapterService, EventTypeIdGenerator eventTypeIdGenerator)
          Adds a new variant stream.
 void ValueAddEventServiceImpl.init(java.util.Map<java.lang.String,ConfigurationRevisionEventType> configRevision, java.util.Map<java.lang.String,ConfigurationVariantStream> configVariant, EventAdapterService eventAdapterService, EventTypeIdGenerator eventTypeIdGenerator)
           
protected static RevisionSpec ValueAddEventServiceImpl.validateRevision(java.lang.String revisioneventTypeName, ConfigurationRevisionEventType config, EventAdapterService eventAdapterService)
          Valiate the revision configuration.
 


© 2006-2015 EsperTech Inc.
All rights reserved.
Visit us at espertech.com