Click or drag to resize

EPDeploymentService Interface

Service for deploying and undeploying modules and obtaining information about current deployments and statements.

Namespace:  com.espertech.esper.runtime.client
Assembly:  NEsper.Runtime (in NEsper.Runtime.dll) Version: 8.0.0.0
Syntax
C#
public interface EPDeploymentService

The EPDeploymentService type exposes the following members.

Properties
  NameDescription
Public propertyDeployments
Returns the deployment ids of all deployments.
Public propertyDeploymentStateListeners
Returns an iterator of deployment state listeners (read-only)
Top
Methods
  NameDescription
Public methodAddDeploymentStateListener
Add a deployment state listener
Public methodDeploy(EPCompiled)
Deploy a compiled module and with the default options.
Public methodDeploy(EPCompiled, DeploymentOptions)
Deploy a compiled module and with the provided options.
Public methodGetDeployment
Returns the deployment.

A deployment is uniquely identified by its deployment id.

Public methodGetStatement
Returns the statement of a given deployment.

A statement is uniquely identified by the deployment id that deployed the statement and by the statement name.

Public methodRemoveAllDeploymentStateListeners
Removes all deployment state listener
Public methodRemoveDeploymentStateListener
Remove a deployment state listener
Public methodUndeploy(String)
Undeploy a deployment and with the default options.
Public methodUndeploy(String, UndeploymentOptions)
Undeploy a deployment and with the provided options
Public methodUndeployAll
Undeploy all deployments and with the default options.
Public methodUndeployAll(UndeploymentOptions)
Undeploy all deployments and with the provided options.
Top
See Also