/* *************************************************************************************** * 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.core.context.mgr; import com.espertech.esper.client.EventBean; import com.espertech.esper.pattern.MatchedEventMap; /** * Context condition used for Non-Overlapping contexts only, when @Now is specified. * Not used for end-conditions (only for start range conditions). * This is enforced by the grammar and spec mapper. */ public class ContextControllerConditionImmediate implements ContextControllerCondition { public void activate(EventBean optionalTriggerEvent, MatchedEventMap priorMatches, long timeOffset, boolean isRecoveringResilient) { } public void deactivate() { } public boolean isRunning() { return false; } public Long getExpectedEndTime() { return null; } public boolean isImmediate() { return true; } }