Class MergeHub<T>

    • Constructor Detail

      • MergeHub

        public MergeHub​(int perProducerBufferSize)
    • Method Detail

      • source

        public static <T> Source<T,​Sink<T,​NotUsed>> source​(int perProducerBufferSize)
        Creates a Source that emits elements merged from a dynamic set of producers. After the Source returned by this method is materialized, it returns a Sink as a materialized value. This Sink can be materialized arbitrary many times and each of the materializations will feed the elements into the original Source.

        Every new materialization of the Source results in a new, independent hub, which materializes to its own Sink for feeding that materialization.

        Completed or failed Sinks are simply removed. Once the Source is cancelled, the Hub is considered closed and any new producers using the Sink will be cancelled.

        Parameters:
        perProducerBufferSize - Buffer space used per producer. Default value is 16.
        Returns:
        (undocumented)
      • source

        public static <T> Source<T,​Sink<T,​NotUsed>> source()
        Creates a Source that emits elements merged from a dynamic set of producers. After the Source returned by this method is materialized, it returns a Sink as a materialized value. This Sink can be materialized arbitrary many times and each of the materializations will feed the elements into the original Source.

        Every new materialization of the Source results in a new, independent hub, which materializes to its own Sink for feeding that materialization.

        Completed or failed Sinks are simply removed. Once the Source is cancelled, the Hub is considered closed and any new producers using the Sink will be cancelled.

        Returns:
        (undocumented)
      • shape

        public SourceShape<T> shape()
        Description copied from interface: Graph
        The shape of a graph is all that is externally visible: its inlets and outlets.
        Returns:
        (undocumented)