Package | Description |
---|---|
com.espertech.esper.runtime.client |
Runtime API: Runs compiled EPL.
|
com.espertech.esper.runtime.client.plugin |
Plug-in loaders follow runtime lifecycle and typically are for providing simple adapters or other integrations.
|
com.espertech.esper.runtime.client.scopetest |
Runtime-related classes for facilitating automated regression testing.
|
com.espertech.esper.runtime.client.util |
Adapter shared classes.
|
Modifier and Type | Method and Description |
---|---|
static EPRuntime |
EPRuntimeProvider.getDefaultRuntime()
Returns the runtime for the default URI.
|
static EPRuntime |
EPRuntimeProvider.getDefaultRuntime(Configuration configuration)
Returns the default runtime.
|
static EPRuntime |
EPRuntimeProvider.getExistingRuntime(java.lang.String uri)
Returns an existing runtime.
|
static EPRuntime |
EPRuntimeProvider.getRuntime(java.lang.String uri)
Returns a runtime for a given runtime URI.
|
static EPRuntime |
EPRuntimeProvider.getRuntime(java.lang.String uri,
Configuration configuration)
Returns a runtime for a given URI.
|
Modifier and Type | Method and Description |
---|---|
void |
EPRuntimeStateListener.onEPRuntimeDestroyRequested(EPRuntime runtime)
Invoked before an
EPRuntime is destroyed. |
void |
EPRuntimeStateListener.onEPRuntimeInitialized(EPRuntime runtime)
Invoked after an existing
EPRuntime is initialized upon completion of a call to initialize. |
void |
UpdateListener.update(EventBean[] newEvents,
EventBean[] oldEvents,
EPStatement statement,
EPRuntime runtime)
Notify that new events are available or old events are removed.
|
Modifier and Type | Method and Description |
---|---|
EPRuntime |
PluginLoaderInitContext.getRuntime()
Returns the runtimeloading the plugin.
|
Constructor and Description |
---|
PluginLoaderInitContext(java.lang.String name,
java.util.Properties properties,
java.lang.String configXml,
EPRuntime runtime)
Initialization context for use with the adapter loader.
|
Modifier and Type | Method and Description |
---|---|
void |
SupportUpdateListener.update(EventBean[] newData,
EventBean[] oldData,
EPStatement statement,
EPRuntime runtime) |
Modifier and Type | Method and Description |
---|---|
EPRuntime |
AdapterSPI.getRuntime()
Returns the runtime instance.
|
Modifier and Type | Method and Description |
---|---|
void |
AdapterSPI.setRuntime(EPRuntime runtime)
An adapter takes an runtime instance to process events.
|