Uses of Interface
com.espertech.esper.view.ViewFactory

Packages that use ViewFactory
com.espertech.esper.core.context.util Context partition utility or reference classes. 
com.espertech.esper.core.start Classes related to start and stop of statements 
com.espertech.esper.epl.virtualdw Virtual data window. 
com.espertech.esper.rowregex Match-recognize expression tree and state objects. 
com.espertech.esper.view View infrastructure concerned with view creation and destroy, cloning and hooking views trees into filtering. 
com.espertech.esper.view.ext Extension views that providing services such as sorting, which don't fit much into other categories. 
com.espertech.esper.view.internal Internal management views for buffering view results and providing these to joins. 
com.espertech.esper.view.stat Views computing statistical values. 
com.espertech.esper.view.std Base service views that perform typical SQL-like functions such as unique, grouping, size, last etc. 
com.espertech.esper.view.window Window views are in this package 
 

Uses of ViewFactory in com.espertech.esper.core.context.util
 

Method parameters in com.espertech.esper.core.context.util with type arguments of type ViewFactory
static AgentInstanceViewFactoryChainContext AgentInstanceViewFactoryChainContext.create(java.util.List<ViewFactory> viewFactoryChain, AgentInstanceContext agentInstanceContext, ViewResourceDelegateVerifiedStream viewResourceDelegate)
           
 

Uses of ViewFactory in com.espertech.esper.core.start
 

Method parameters in com.espertech.esper.core.start with type arguments of type ViewFactory
static DataWindowViewWithPrevious EPStatementStartMethodHelperPrevious.findPreviousViewFactory(java.util.List<ViewFactory> factories)
           
static PriorEventViewFactory EPStatementStartMethodHelperPrior.findPriorViewFactory(java.util.List<ViewFactory> factories)
           
static void EPStatementStartMethodHelperValidate.validateNoDataWindowOnNamedWindow(java.util.List<ViewFactory> viewFactories)
           
 

Uses of ViewFactory in com.espertech.esper.epl.virtualdw
 

Classes in com.espertech.esper.epl.virtualdw that implement ViewFactory
 class VirtualDWViewFactoryImpl
           
 

Methods in com.espertech.esper.epl.virtualdw with parameters of type ViewFactory
 void VirtualDWViewFactoryImpl.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.epl.virtualdw with type arguments of type ViewFactory
 void VirtualDWViewFactoryImpl.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Uses of ViewFactory in com.espertech.esper.rowregex
 

Classes in com.espertech.esper.rowregex that implement ViewFactory
 class EventRowRegexNFAViewFactory
          View factory for match-recognize view.
 

Methods in com.espertech.esper.rowregex with parameters of type ViewFactory
 void EventRowRegexNFAViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.rowregex with type arguments of type ViewFactory
 void EventRowRegexNFAViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Uses of ViewFactory in com.espertech.esper.view
 

Subinterfaces of ViewFactory in com.espertech.esper.view
 interface AsymetricDataWindowViewFactory
          Marker interface for use with view factories that create data window views that are asymetric in posting insert and remove stream data: Data windows that post only a partial insert and remove stream as output when compared to the insert and remove stream received.
 interface DataWindowViewFactory
          Marker interface for use with view factories that create data window views only.
 

Classes in com.espertech.esper.view that implement ViewFactory
 class ViewFactorySupport
          Abstract base class for view factories that do not make re-useable views and that do not share view resources with expression nodes.
 

Methods in com.espertech.esper.view that return ViewFactory
 ViewFactory ViewResolutionServiceImpl.create(java.lang.String nameSpace, java.lang.String name)
           
 ViewFactory ViewResolutionService.create(java.lang.String namespace, java.lang.String name)
          Instantiates a ViewFactory based on the view namespace and name stored in the view spec.
 ViewFactory GroupableView.getViewFactory()
           
 

Methods in com.espertech.esper.view that return types with arguments of type ViewFactory
 java.util.List<ViewFactory> ViewFactoryChain.getViewFactoryChain()
          Returns the chain of view factories.
static java.util.List<ViewFactory> ViewServiceHelper.instantiateFactories(int streamNum, java.util.List<ViewSpec> viewSpecList, StatementContext statementContext, boolean isSubquery, int subqueryNumber)
          Given a list of view specifications obtained from by parsing this method instantiates a list of view factories.
 

Methods in com.espertech.esper.view with parameters of type ViewFactory
 void ViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
          Attaches the factory to a parent event type such that the factory can validate attach requirements and determine an event type for resulting views.
static java.lang.Object ViewFactoryProxy.newInstance(java.lang.String engineURI, java.lang.String statementName, ViewFactory viewFactory, java.lang.String viewName)
           
 

Method parameters in com.espertech.esper.view with type arguments of type ViewFactory
 void ViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
          Attaches the factory to a parent event type such that the factory can validate attach requirements and determine an event type for resulting views.
 ViewServiceCreateResult ViewServiceImpl.createViews(Viewable eventStreamViewable, java.util.List<ViewFactory> viewFactories, AgentInstanceViewFactoryChainContext viewFactoryChainContext, boolean hasPreviousNode)
           
 ViewServiceCreateResult ViewService.createViews(Viewable eventStreamViewable, java.util.List<ViewFactory> viewFactoryChain, AgentInstanceViewFactoryChainContext viewFactoryChainContext, boolean hasPreviousNode)
          Creates the views given a chain of view factories.
static java.util.Set<java.lang.String> ViewServiceHelper.getUniqueCandidateProperties(java.util.List<ViewFactory> viewFactory, java.lang.annotation.Annotation[] annotations)
           
static java.util.List<View> ViewServiceHelper.instantiateChain(Viewable parentViewable, java.util.List<ViewFactory> viewFactories, AgentInstanceViewFactoryChainContext viewFactoryChainContext)
          Instantiate a chain of views.
protected static Pair<Viewable,java.util.List<View>> ViewServiceHelper.matchExistingViews(Viewable rootViewable, java.util.List<ViewFactory> viewFactories)
          Match the views under the stream to the list of view specications passed in.
 

Constructors in com.espertech.esper.view with parameters of type ViewFactory
ViewFactoryProxy(java.lang.String engineURI, java.lang.String statementName, ViewFactory viewFactory, java.lang.String viewName)
           
 

Constructor parameters in com.espertech.esper.view with type arguments of type ViewFactory
ViewFactoryChain(EventType streamEventType, java.util.List<ViewFactory> viewFactoryChain)
          Ctor.
 

Uses of ViewFactory in com.espertech.esper.view.ext
 

Classes in com.espertech.esper.view.ext that implement ViewFactory
 class RankWindowViewFactory
          Factory for rank window views.
 class SortWindowViewFactory
          Factory for sort window views.
 class TimeOrderViewFactory
          Factory for views for time-ordering events.
 

Methods in com.espertech.esper.view.ext that return ViewFactory
 ViewFactory TimeOrderView.getViewFactory()
           
 ViewFactory SortWindowView.getViewFactory()
           
 ViewFactory RankWindowView.getViewFactory()
           
 

Methods in com.espertech.esper.view.ext with parameters of type ViewFactory
 void TimeOrderViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void SortWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void RankWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.view.ext with type arguments of type ViewFactory
 void TimeOrderViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void SortWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void RankWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Uses of ViewFactory in com.espertech.esper.view.internal
 

Classes in com.espertech.esper.view.internal that implement ViewFactory
 class IntersectViewFactory
          Factory for union-views.
 class PriorEventViewFactory
          Factory for making PriorEventView instances.
 class UnionViewFactory
          Factory for union-views.
 

Fields in com.espertech.esper.view.internal with type parameters of type ViewFactory
protected  java.util.List<ViewFactory> UnionViewFactory.viewFactories
          The view factories.
protected  java.util.List<ViewFactory> IntersectViewFactory.viewFactories
          The view factories.
 

Methods in com.espertech.esper.view.internal that return ViewFactory
 ViewFactory UnionView.getViewFactory()
           
 ViewFactory UnionAsymetricView.getViewFactory()
           
 ViewFactory IntersectView.getViewFactory()
           
 ViewFactory IntersectBatchView.getViewFactory()
           
 ViewFactory IntersectAsymetricView.getViewFactory()
           
 

Methods in com.espertech.esper.view.internal that return types with arguments of type ViewFactory
 java.util.Collection<ViewFactory> ViewFactoryContainer.getViewFactoriesContained()
           
 java.util.Collection<ViewFactory> UnionViewFactory.getViewFactoriesContained()
           
 java.util.Collection<ViewFactory> IntersectViewFactory.getViewFactoriesContained()
           
 

Methods in com.espertech.esper.view.internal with parameters of type ViewFactory
 void UnionViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void PriorEventViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void IntersectViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
static void IntersectView.visitViewContained(ViewDataVisitorContained viewDataVisitor, ViewFactory viewFactory, View[] views)
           
 

Method parameters in com.espertech.esper.view.internal with type arguments of type ViewFactory
 void UnionViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void PriorEventViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void IntersectViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
protected static java.lang.String IntersectViewFactory.getViewNameUnionIntersect(boolean intersect, java.util.Collection<ViewFactory> factories)
           
 void UnionViewFactory.setViewFactories(java.util.List<ViewFactory> viewFactories)
          Sets the view factories.
 void IntersectViewFactory.setViewFactories(java.util.List<ViewFactory> viewFactories)
          Sets the view factories.
 

Constructor parameters in com.espertech.esper.view.internal with type arguments of type ViewFactory
IntersectBatchView(AgentInstanceViewFactoryChainContext agentInstanceViewFactoryContext, IntersectViewFactory factory, EventType eventType, java.util.List<View> viewList, java.util.List<ViewFactory> viewFactories, boolean hasAsymetric)
          Ctor.
 

Uses of ViewFactory in com.espertech.esper.view.stat
 

Classes in com.espertech.esper.view.stat that implement ViewFactory
 class CorrelationViewFactory
          Factory for CorrelationView instances.
 class RegressionLinestViewFactory
          Factory for RegressionLinestView instances.
 class UnivariateStatisticsViewFactory
          Factory for UnivariateStatisticsView instances.
 class WeightedAverageViewFactory
          Factory for WeightedAverageView instances.
 

Fields in com.espertech.esper.view.stat declared as ViewFactory
protected  ViewFactory BaseBivariateStatisticsView.viewFactory
           
 

Methods in com.espertech.esper.view.stat that return ViewFactory
 ViewFactory WeightedAverageView.getViewFactory()
           
 ViewFactory UnivariateStatisticsView.getViewFactory()
           
 ViewFactory BaseBivariateStatisticsView.getViewFactory()
           
 

Methods in com.espertech.esper.view.stat with parameters of type ViewFactory
 void WeightedAverageViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void UnivariateStatisticsViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void RegressionLinestViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void CorrelationViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.view.stat with type arguments of type ViewFactory
 void WeightedAverageViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void UnivariateStatisticsViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void RegressionLinestViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void CorrelationViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Constructors in com.espertech.esper.view.stat with parameters of type ViewFactory
BaseBivariateStatisticsView(ViewFactory viewFactory, AgentInstanceContext agentInstanceContext, ExprNode expressionX, ExprNode expressionY, EventType eventType, StatViewAdditionalProps additionalProps)
          Constructor requires the name of the two fields to use in the parent view to compute the statistics.
CorrelationView(ViewFactory viewFactory, AgentInstanceContext agentInstanceContext, ExprNode xExpression, ExprNode yExpression, EventType eventType, StatViewAdditionalProps additionalProps)
          Constructor.
RegressionLinestView(ViewFactory viewFactory, AgentInstanceContext agentInstanceContext, ExprNode xFieldName, ExprNode yFieldName, EventType eventType, StatViewAdditionalProps additionalProps)
          Constructor.
 

Uses of ViewFactory in com.espertech.esper.view.std
 

Classes in com.espertech.esper.view.std that implement ViewFactory
 class FirstElementViewFactory
          Factory for FirstElementView instances.
 class FirstUniqueByPropertyViewFactory
          Factory for FirstUniqueByPropertyView instances.
 class GroupByViewFactory
          Factory for GroupByView instances.
 class LastElementViewFactory
          Factory for LastElementView instances.
 class MergeViewFactory
          Factory for MergeView instances.
 class SizeViewFactory
          Factory for SizeView instances.
 class UniqueByPropertyViewFactory
          Factory for UniqueByPropertyView instances.
 

Methods in com.espertech.esper.view.std that return ViewFactory
 ViewFactory UniqueByPropertyView.getViewFactory()
           
 ViewFactory LastElementView.getViewFactory()
           
 ViewFactory FirstUniqueByPropertyView.getViewFactory()
           
 ViewFactory FirstElementView.getViewFactory()
           
 

Methods in com.espertech.esper.view.std with parameters of type ViewFactory
 void UniqueByPropertyViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void SizeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void MergeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LastElementViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void GroupByViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstUniqueByPropertyViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstElementViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.view.std with type arguments of type ViewFactory
 void UniqueByPropertyViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void SizeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void MergeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LastElementViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void GroupByViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstUniqueByPropertyViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstElementViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Uses of ViewFactory in com.espertech.esper.view.window
 

Classes in com.espertech.esper.view.window that implement ViewFactory
 class ExpressionBatchViewFactory
          Factory for ExpressionBatchView.
 class ExpressionViewFactoryBase
          Base factory for expression-based window and batch view.
 class ExpressionWindowViewFactory
          Factory for ExpressionWindowView.
 class ExternallyTimedBatchViewFactory
          Factory for ExternallyTimedBatchView.
 class ExternallyTimedWindowViewFactory
          Factory for ExternallyTimedWindowView.
 class FirstLengthWindowViewFactory
          Factory for FirstLengthWindowView.
 class FirstTimeViewFactory
          Factory for FirstTimeView.
 class KeepAllViewFactory
          Factory for KeepAllView.
 class LengthBatchViewFactory
          Factory for TimeBatchView.
 class LengthWindowViewFactory
          Factory for LengthWindowView.
 class TimeAccumViewFactory
          Factory for TimeAccumView.
 class TimeBatchViewFactory
          Factory for TimeBatchView.
 class TimeLengthBatchViewFactory
          Factory for TimeLengthBatchView.
 class TimeWindowViewFactory
          Factory for TimeWindowView.
 

Methods in com.espertech.esper.view.window that return ViewFactory
 ViewFactory TimeWindowView.getViewFactory()
           
 ViewFactory TimeLengthBatchView.getViewFactory()
           
 ViewFactory TimeBatchViewRStream.getViewFactory()
           
 ViewFactory TimeBatchView.getViewFactory()
           
 ViewFactory TimeAccumViewRStream.getViewFactory()
           
 ViewFactory TimeAccumView.getViewFactory()
           
 ViewFactory LengthWindowViewRStream.getViewFactory()
           
 ViewFactory LengthWindowView.getViewFactory()
           
 ViewFactory LengthBatchViewRStream.getViewFactory()
           
 ViewFactory LengthBatchView.getViewFactory()
           
 ViewFactory KeepAllView.getViewFactory()
           
 ViewFactory FirstTimeView.getViewFactory()
           
 ViewFactory FirstLengthWindowView.getViewFactory()
           
 ViewFactory ExternallyTimedWindowView.getViewFactory()
           
 ViewFactory ExternallyTimedBatchView.getViewFactory()
           
 ViewFactory ExpressionWindowView.getViewFactory()
           
 ViewFactory ExpressionBatchView.getViewFactory()
           
 

Methods in com.espertech.esper.view.window with parameters of type ViewFactory
 void TimeWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeLengthBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeAccumViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LengthWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LengthBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void KeepAllViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstTimeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstLengthWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExternallyTimedWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExternallyTimedBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExpressionViewFactoryBase.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 

Method parameters in com.espertech.esper.view.window with type arguments of type ViewFactory
 void TimeWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeLengthBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void TimeAccumViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LengthWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void LengthBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void KeepAllViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstTimeViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void FirstLengthWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExternallyTimedWindowViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExternallyTimedBatchViewFactory.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 void ExpressionViewFactoryBase.attach(EventType parentEventType, StatementContext statementContext, ViewFactory optionalParentFactory, java.util.List<ViewFactory> parentViewFactories)
           
 


© 2006-2016 EsperTech Inc.
All rights reserved.
Visit us at espertech.com