Package | Description |
---|---|
com.espertech.esper.common.client |
Common API: Classes that are generally relevant to both the compiler API and the processEvent API.
|
com.espertech.esper.common.client.configuration |
Configuration classes.
|
com.espertech.esper.common.client.context |
Context partition selection and descriptors.
|
com.espertech.esper.common.client.dataflow.core |
Client API for data flows.
|
com.espertech.esper.common.client.fireandforget |
Classes related to fire-and-forget execution
|
com.espertech.esper.common.client.variable |
Classes for variable management
|
com.espertech.esper.runtime.client |
Runtime API: Runs compiled EPL.
|
com.espertech.esper.runtime.client.option |
Deployment option callbacks.
|
com.espertech.esper.runtime.client.util |
Adapter shared classes.
|
Modifier and Type | Class and Description |
---|---|
class |
EventTypeException
Indicates that a problem occurred looking up, assigning or creating and event type.
|
Modifier and Type | Method and Description |
---|---|
void |
EventSender.routeEvent(java.lang.Object theEvent)
Route the event object back to the event stream processing runtime for internal dispatching,
to avoid the possibility of a stack overflow due to nested calls to sendEvent.
|
void |
EventSender.sendEvent(java.lang.Object theEvent)
Processes the event object.
|
Modifier and Type | Class and Description |
---|---|
class |
ConfigurationException
Thrown to indicate a configuration problem.
|
Modifier and Type | Method and Description |
---|---|
Configuration |
Configuration.configure()
Use the configuration specified in an application
resource named esper.cfg.xml.
|
Configuration |
Configuration.configure(org.w3c.dom.Document document)
Use the mappings and properties specified in the given XML document.
|
Configuration |
Configuration.configure(java.io.File configFile)
Use the configuration specified in the given application
file.
|
Configuration |
Configuration.configure(java.lang.String resource)
Use the configuration specified in the given application
resource.
|
Configuration |
Configuration.configure(java.net.URL url)
Use the configuration specified by the given URL.
|
protected static java.io.InputStream |
Configuration.getConfigurationInputStream(java.lang.String resource)
Get the configuration file as an InputStream.
|
Modifier and Type | Class and Description |
---|---|
class |
InvalidContextPartitionSelector
Indicates an invalid combination of context declaration and context partition selector, i.e.
|
Modifier and Type | Class and Description |
---|---|
class |
EPDataFlowAlreadyExistsException
Thrown to indicate a data flow saved configuration already exists.
|
class |
EPDataFlowCancellationException
Indicates cancellation of a data flow instance.
|
class |
EPDataFlowExecutionException
Thrown to indicate a data flow execution exception.
|
class |
EPDataFlowInstantiationException
Indicates an exception instantiating a data flow.
|
class |
EPDataFlowNotFoundException
Thrown to indicate a data flow is not found.
|
Modifier and Type | Method and Description |
---|---|
void |
EPFireAndForgetPreparedQueryParameterized.setObject(int parameterIndex,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
void |
EPFireAndForgetPreparedQueryParameterized.setObject(java.lang.String parameterName,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
Modifier and Type | Class and Description |
---|---|
class |
VariableConstantValueException
Indicates that a variable cannot be set.
|
class |
VariableNotFoundException
Indicates that a variable was not found.
|
class |
VariableValueException
Indicates that a variable value could not be assigned.
|
Modifier and Type | Class and Description |
---|---|
class |
EPSubscriberException
This exception is thrown to indicate that a subscriber registration failed
such as when the subscribe does not expose an acceptable method to receive statement results.
|
Modifier and Type | Method and Description |
---|---|
void |
StatementSubstitutionParameterContext.setObject(int parameterIndex,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
void |
StatementSubstitutionParameterContext.setObject(java.lang.String parameterName,
java.lang.Object value)
Sets the value of the designated parameter using the given object.
|
Modifier and Type | Class and Description |
---|---|
class |
IllegalStateTransitionException
Thrown when an illegal Adapter state transition is attempted.
|
Modifier and Type | Method and Description |
---|---|
void |
Adapter.destroy()
Destroy the Adapter, stopping the sending of all events and releasing all
the resources, and disallowing any further state changes on the Adapter.
|
void |
Adapter.pause()
Pause the sending of events after a Adapter has been started.
|
void |
Adapter.resume()
Resume sending events after the Adapter has been paused.
|
void |
Adapter.start()
Start the sending of events into the runtime egine.
|
void |
Adapter.stop()
Stop sending events and return the Adapter to the OPENED state, ready to be
started once again.
|