Uses of Class
com.espertech.esper.common.client.EPCompiled
Package
Description
Compiler API: Compiles EPL to byte code.
Compiler-related utilities.
Runtime API: Runs compiled EPL.
-
Uses of EPCompiled in com.espertech.esper.common.client.hook.recompile
Modifier and TypeMethodDescriptionEPRecompileProviderContext.getCompiled()
EPRecompileProvider.provide
(EPRecompileProviderContext context) Provide compiler outputModifierConstructorDescriptionEPRecompileProviderContext
(EPCompiled compiled, Configuration configuration, String deploymentId, String moduleName, Map<ModuleProperty, Object> moduleProperties, List<EPCompiled> path, int statementIdFirstStatement, Map<Integer, Object> userObjectsRuntime, Map<Integer, String> statementNamesWhenProvidedByAPI, Map<Integer, Map<Integer, Object>> substitutionParameters) Ctor.ModifierConstructorDescriptionEPRecompileProviderContext
(EPCompiled compiled, Configuration configuration, String deploymentId, String moduleName, Map<ModuleProperty, Object> moduleProperties, List<EPCompiled> path, int statementIdFirstStatement, Map<Integer, Object> userObjectsRuntime, Map<Integer, String> statementNamesWhenProvidedByAPI, Map<Integer, Map<Integer, Object>> substitutionParameters) Ctor. -
Uses of EPCompiled in com.espertech.esper.compiler.client
Modifier and TypeMethodDescriptionEPCompiler.compile
(Module module, CompilerArguments arguments) Compiles a module object model and returns the byte code for deployment into a runtime.EPCompiler.compile
(String epl, CompilerArguments arguments) Compiles EPL and returns the byte code for deployment into a runtime.EPCompiler.compileQuery
(EPStatementObjectModel fireAndForgetEPLQueryModel, CompilerArguments arguments) Compiles fire-and-forget query object model for execution by the runtime.EPCompiler.compileQuery
(String fireAndForgetEPLQuery, CompilerArguments arguments) Compiles a single fire-and-forget query for execution by the runtime.Modifier and TypeMethodDescriptionCompilerPath.getCompileds()
Returns the compiled modules in path.Modifier and TypeMethodDescriptionCompilerPath.addAll
(Collection<EPCompiled> compiledColl) Add all compiled modules -
Uses of EPCompiled in com.espertech.esper.compiler.client.util
Modifier and TypeMethodDescriptionEPRecompileProviderDefault.provide
(EPRecompileProviderContext env) static EPCompiled
Reads the jar file into anEPCompiled
compiled for deployment into a runtime.Modifier and TypeMethodDescriptionstatic void
EPCompiledIOUtil.write
(EPCompiled compiled, File file) Write the compiled to a jar file. -
Uses of EPCompiled in com.espertech.esper.runtime.client
Modifier and TypeMethodDescriptionEPDeploymentRolloutCompiled.getCompiled()
Returns the compiled module.Modifier and TypeMethodDescriptionEPDeploymentService.deploy
(EPCompiled compiled) Deploy a compiled module and with the default options.EPDeploymentService.deploy
(EPCompiled compiled, DeploymentOptions options) Deploy a compiled module and with the provided options.EPFireAndForgetService.executeQuery
(EPCompiled compiled) Execute a fire-and-forget query.EPFireAndForgetService.executeQuery
(EPCompiled compiled, ContextPartitionSelector[] selectors) 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.EPFireAndForgetService.prepareQuery
(EPCompiled compiled) Prepare an unparameterized fire-and-forget query before execution and for repeated execution.EPFireAndForgetService.prepareQueryWithParameters
(EPCompiled compiled) Prepare a parameterized fire-and-forget query for repeated parameter setting and execution.ModifierConstructorDescriptionEPDeploymentRolloutCompiled
(EPCompiled compiled) Ctor, assumes default deployment optionsEPDeploymentRolloutCompiled
(EPCompiled compiled, DeploymentOptions options) Ctor.