/* *************************************************************************************** * 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 provide a single-row function and should be registered as such so * it becomes callable from EPL statements using the name specified. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface SingleRowFunction { /** * Single-row function name for use in EPL statements. * * @return function name. */ String name(); }