com.espertech.esper.client.deploy.EngineInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esper Show documentation
Show all versions of esper Show documentation
Complex event processing and event series analysis component
/*
***************************************************************************************
* Copyright (C) 2006 EsperTech, Inc. All rights reserved. *
* http://www.espertech.com/esper *
* http://www.espertech.com *
* ---------------------------------------------------------------------------------- *
* The software in this package is published under the terms of the GPL license *
* a copy of which has been included with this distribution in the license.txt file. *
***************************************************************************************
*/
package com.espertech.esper.client.deploy;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* For use with server environments that support dynamic engine initialization (enterprise edition server),
* indicates that this method should be called after the engine instance is initialized and the initial set of
* EPL statements have been deployed,
* for example to set up listeners and subscribers.
*
* Apply this annotation to any method
* that accepts a single string parameter providing the engine name.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface EngineInitializer {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy