Class MergeLatest


  • public class MergeLatest
    extends java.lang.Object
    Create a new MergeLatest with the specified number of input ports.

    param: inputPorts number of input ports param: eagerComplete if true, the merge latest will complete as soon as one of its inputs completes.

    • Constructor Summary

      Constructors 
      Constructor Description
      MergeLatest()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> GraphStage<UniformFanInShape<T,​java.util.List<T>>> create​(int inputPorts)
      Create a new MergeLatest with the specified number of input ports.
      static <T> GraphStage<UniformFanInShape<T,​java.util.List<T>>> create​(int inputPorts, boolean eagerComplete)  
      • Methods inherited from class java.lang.Object

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

      • MergeLatest

        public MergeLatest()
    • Method Detail

      • create

        public static <T> GraphStage<UniformFanInShape<T,​java.util.List<T>>> create​(int inputPorts)
        Create a new MergeLatest with the specified number of input ports.

        Parameters:
        inputPorts - number of input ports
        Returns:
        (undocumented)