public ISet <MultiKey <EventBean> > StaticJoin()
        {
            var joinSet = _composer.StaticJoin();

            _filter.Process(joinSet, null, _staticExprEvaluatorContext);
            return(joinSet);
        }
Exemple #2
0
        public void PreloadAggregation(ResultSetProcessor resultSetProcessor)
        {
            var newEvents = _joinSetComposer.StaticJoin();
            var oldEvents = new HashSet <MultiKey <EventBean> >();

            resultSetProcessor.ProcessJoinResult(newEvents, oldEvents, false);
        }
Exemple #3
0
        public ISet<MultiKeyArrayOfKeys<EventBean>> StaticJoin()
        {
            var joinSet = composer.StaticJoin();
            if (optionalFilter != null) {
                ProcessFilter(joinSet, null, staticExprEvaluatorContext);
            }

            return joinSet;
        }