/// <summary>
 /// Initializes a new instance of the <see cref="AggregationStateSortedWFilter"/> class.
 /// </summary>
 /// <param name="spec">aggregation spec</param>
 public AggregationStateSortedWFilter(AggregationStateSortedSpec spec) : base(spec)
 {
 }
Пример #2
0
 /// <summary>Ctor. </summary>
 /// <param name="spec">aggregation spec</param>
 public AggregationStateSortedImpl(AggregationStateSortedSpec spec)
 {
     Spec   = spec;
     Sorted = new SortedDictionary <Object, Object>(spec.Comparator);
 }
Пример #3
0
 public AggregationStateSortedJoin(AggregationStateSortedSpec spec) : base(spec)
 {
     Refs = new RefCountedSetAtomicInteger <EventBean>();
 }