Exemple #1
0
        public EventWindowBlock <T> CreateEventWindowBlock <T>(int windowSize, string name)
        {
            var windowBlock = new EventWindowBlock <T>(EventProcessor, windowSize);

            SetDebugName(windowBlock, name);
            return(windowBlock);
        }
Exemple #2
0
        public ICEPExpression <IEnumerable <InputType> > Window(int numEvents)
        {
            EventWindowBlock <InputType> block = blockFactory.CreateEventWindowBlock <InputType>(numEvents, name + "WindowNumEvents");

            return(CreateChildExpr <IEnumerable <InputType> >(this, block, name + "WindowEvents."));
        }