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

com.espertech.esper.view.ViewService 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.view;

import com.espertech.esper.client.EventType;
import com.espertech.esper.core.context.util.AgentInstanceViewFactoryChainContext;
import com.espertech.esper.core.service.StatementContext;
import com.espertech.esper.epl.spec.StreamSpecOptions;
import com.espertech.esper.epl.spec.ViewSpec;

import java.util.List;

/**
 * Service interface for creating views.
 */
public interface ViewService {
    /**
     * Returns a chain of view factories that can be used to obtain the final event type,
     * and that can later be used to actually create the chain of views or reuse existing views.
     * 

* Does not actually hook up the view factories or views against the event stream, but creates view * factories and sets parameters on each view factory as supplied. Determines if * view factories are compatible in the chain via the attach method. * * @param streamNum - the stream number starting at zero, a join would have N streams * @param parentEventType - is the event type of the event stream that originates the raw events * @param viewSpecList - the specification for each view factory in the chain to be created * @param context - dependent services * @param options - stream options such as unidirectional, retain-union etc * @param subqueryNumber subquery num * @param isSubquery subquery indicator * @return chain of view factories * @throws ViewProcessingException thrown if a view factory doesn't take parameters as supplied, * or cannot hook onto it's parent view or event stream */ public ViewFactoryChain createFactories(int streamNum, EventType parentEventType, ViewSpec[] viewSpecList, StreamSpecOptions options, StatementContext context, boolean isSubquery, int subqueryNumber) throws ViewProcessingException; /** * Creates the views given a chain of view factories. *

* Attempts to reuse compatible views under then parent event stream viewable as * indicated by each view factories reuse method. * * @param eventStreamViewable is the event stream to hook into * @param viewFactoryChain defines the list of view factorys to call makeView or canReuse on * @param viewFactoryChainContext provides services * @param hasPreviousNode indicator whether previous-expr * @return last viewable in chain, or the eventStreamViewable if no view factories are supplied */ public ViewServiceCreateResult createViews(Viewable eventStreamViewable, List viewFactoryChain, AgentInstanceViewFactoryChainContext viewFactoryChainContext, boolean hasPreviousNode); /** * Removes a view discoupling the view and any of it's parent views up the tree to the last shared parent view. * * @param eventStream - the event stream that originates the raw events * @param view - the view (should be the last in a chain) to remove */ public void remove(EventStream eventStream, Viewable view); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy