All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.espertech.esper.client.deploy.EngineInitializer Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
/*
 ***************************************************************************************
 *  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