Class MergeSorted$


  • public class MergeSorted$
    extends java.lang.Object
    Merge two pre-sorted streams such that the resulting stream is sorted.

    '''Emits when''' both inputs have an element available

    '''Backpressures when''' downstream backpressures

    '''Completes when''' all upstreams complete

    '''Cancels when''' downstream cancels

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static MergeSorted$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      MergeSorted$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T extends java.lang.Comparable<T>>
      Graph<FanInShape2<T,​T,​T>,​NotUsed>
      create()
      Create a new MergeSorted operator with the specified input type.
      <T> Graph<FanInShape2<T,​T,​T>,​NotUsed> create​(java.util.Comparator<T> comparator)
      Create a new MergeSorted operator with the specified input type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final MergeSorted$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • MergeSorted$

        public MergeSorted$()
    • Method Detail

      • create

        public <T extends java.lang.Comparable<T>> Graph<FanInShape2<T,​T,​T>,​NotUsed> create()
        Create a new MergeSorted operator with the specified input type.
      • create

        public <T> Graph<FanInShape2<T,​T,​T>,​NotUsed> create​(java.util.Comparator<T> comparator)
        Create a new MergeSorted operator with the specified input type.