Click or drag to resize

EPFireAndForgetService Interface

Executes fire-and-forget non-continuous on-demand queries against named windows or tables.

Compile queries use the compile-query methods of the compiler.

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

The EPFireAndForgetService type exposes the following members.

Methods
  NameDescription
Public methodExecuteQuery(EPCompiled)
Execute a fire-and-forget query.
Public methodExecuteQuery(EPFireAndForgetPreparedQueryParameterized)
Execute a fire-and-forget parameterized query.
Public methodExecuteQuery(EPCompiled, ContextPartitionSelector)
Execute a fire-and-forget query for use with named windows and tables that have a context declared and that may therefore have multiple context partitions, allows to target context partitions for query execution selectively.
Public methodExecuteQuery(EPFireAndForgetPreparedQueryParameterized, ContextPartitionSelector)
Execute a fire-and-forget parameterized query.
Public methodPrepareQuery
Prepare an unparameterized fire-and-forget query before execution and for repeated execution.
Public methodPrepareQueryWithParameters
Prepare a parameterized fire-and-forget query for repeated parameter setting and execution. Set all values on the returned holder then execute using {@link #executeQuery(EPFireAndForgetPreparedQueryParameterized)}.
Top
See Also