object Merger
Merges two or more sources, or inlets, of the same type, into one source.
- Source
- MergeLogic.scala
- Alphabetic
- By Inheritance
- Merger
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def graph[T](sources: Seq[SourceWithContext[T, Committable, _]]): Graph[SourceShape[(T, Committable)], NotUsed]
Creates a graph to merge two or more sources into one source.
Creates a graph to merge two or more sources into one source. Elements from all sources will be processed with at-least-once semantics. The elements will be processed in semi-random order and with equal priority for all sources.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def source[T](inlet: CodecInlet[T], inlets: CodecInlet[T]*)(implicit context: AkkaStreamletContext): SourceWithContext[T, Committable, _]
- def source[T](inlets: Seq[CodecInlet[T]])(implicit context: AkkaStreamletContext): SourceWithContext[T, Committable, _]
Merges two or more inlets into one source.
Merges two or more inlets into one source. Elements from all inlets will be processed with at-least-once semantics. The elements will be processed in semi-random order and with equal priority for all inlets.
- def source[T](sources: Seq[SourceWithContext[T, Committable, _]]): SourceWithContext[T, Committable, _]
Merges two or more sources into one source.
Merges two or more sources into one source. Elements from all inlets will be processed with at-least-once semantics. The elements will be processed in semi-random order and with equal priority for all sources.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])