Class MergeSequence<T>

java.lang.Object
org.apache.druid.java.util.common.guava.YieldingSequenceBase<T>
org.apache.druid.java.util.common.guava.MergeSequence<T>
All Implemented Interfaces:
Sequence<T>

public class MergeSequence<T> extends YieldingSequenceBase<T>
Used to perform an n-way merge on n ordered sequences
  • Constructor Details

    • MergeSequence

      public MergeSequence(com.google.common.collect.Ordering<? super T> ordering, Sequence<? extends Sequence<? extends T>> baseSequences)
  • Method Details

    • toYielder

      public <OutType> Yielder<OutType> toYielder(OutType initValue, YieldingAccumulator<OutType,T> accumulator)
      Description copied from interface: Sequence
      Return a Yielder for accumulated sequence.
      Type Parameters:
      OutType - the type of accumulated value.
      Parameters:
      initValue - the initial value to pass along to start the accumulation.
      accumulator - the accumulator which is responsible for accumulating input values.
      Returns:
      a Yielder for accumulated sequence.
      See Also: