public StatementAgentInstanceFactoryUpdate(StatementContext statementContext, EPServicesContext services, EventType streamEventType, UpdateDesc desc, InternalRoutePreprocessView onExprView, InternalEventRouterDesc routerDesc, SubSelectStrategyCollection subSelectStrategyCollection)
     : base(statementContext.Annotations)
 {
     _statementContext            = statementContext;
     _services                    = services;
     _streamEventType             = streamEventType;
     _desc                        = desc;
     _onExprView                  = onExprView;
     _subSelectStrategyCollection = subSelectStrategyCollection;
     _routerDesc                  = routerDesc;
 }
Esempio n. 2
0
 internal IRDescEntry(
     InternalEventRouterDesc internalEventRouterDesc,
     InternalRoutePreprocessView outputView,
     IReaderWriterLock agentInstanceLock,
     bool hasSubselect,
     ExprEvaluator optionalWhereClauseEvaluator)
 {
     this.internalEventRouterDesc = internalEventRouterDesc;
     this.outputView = outputView;
     this.agentInstanceLock = agentInstanceLock;
     this.hasSubselect = hasSubselect;
     this.optionalWhereClauseEvaluator = optionalWhereClauseEvaluator;
 }
Esempio n. 3
0
 internal IRDescEntry(
     InternalEventRouterDesc internalEventRouterDesc,
     InternalRoutePreprocessView outputView,
     StatementContext statementContext,
     bool hasSubselect,
     ExprEvaluator optionalWhereClauseEvaluator)
 {
     this.internalEventRouterDesc = internalEventRouterDesc;
     this.outputView = outputView;
     this.statementContext = statementContext;
     this.hasSubselect = hasSubselect;
     this.optionalWhereClauseEvaluator = optionalWhereClauseEvaluator;
 }
Esempio n. 4
0
 public void AddPreprocessing(InternalEventRouterDesc internalEventRouterDesc, InternalRoutePreprocessView outputView, IReaderWriterLock agentInstanceLock, bool hasSubselect)
 {
 }