final class Interleave[T] extends GraphStage[UniformFanInShape[T, T]]
Interleave represents deterministic merge which takes N elements per input stream, in-order of inputs, emits them downstream and then cycles/"wraps-around" the inputs.
Emits when element is available from current input (depending on phase)
Backpressures when downstream backpressures
Completes when all upstreams complete (eagerClose=false) or one upstream completes (eagerClose=true)
Cancels when downstream cancels
- Source
- Graph.scala
- Alphabetic
- By Inheritance
- Interleave
- GraphStage
- GraphStageWithMaterializedValue
- Graph
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
Shape = UniformFanInShape[T, T]
Type-level accessor for the shape parameter of this graph.
Type-level accessor for the shape parameter of this graph.
- Definition Classes
- Graph
Value Members
-
def
addAttributes(attr: Attributes): Graph[UniformFanInShape[T, T], NotUsed]
- Definition Classes
- Graph
-
def
async: Graph[UniformFanInShape[T, T], NotUsed]
Put an asynchronous boundary around this
Graph
Put an asynchronous boundary around this
Graph
- Definition Classes
- Graph
-
def
createLogic(inheritedAttributes: Attributes): GraphStageLogic
- Definition Classes
- Interleave → GraphStage
-
final
def
createLogicAndMaterializedValue(inheritedAttributes: Attributes): (GraphStageLogic, NotUsed)
- Definition Classes
- GraphStage → GraphStageWithMaterializedValue
- val eagerClose: Boolean
- val in: IndexedSeq[Inlet[T]]
- val inputPorts: Int
-
final
lazy val
module: Module
INTERNAL API.
INTERNAL API.
Every materializable element must be backed by a stream layout module
- Definition Classes
- GraphStageWithMaterializedValue → Graph
-
def
named(name: String): Graph[UniformFanInShape[T, T], NotUsed]
- Definition Classes
- Graph
- val out: Outlet[T]
- val segmentSize: Int
-
val
shape: UniformFanInShape[T, T]
- Definition Classes
- Interleave → Graph
-
def
toString(): String
- Definition Classes
- Interleave → AnyRef → Any
-
final
def
withAttributes(attr: Attributes): Graph[UniformFanInShape[T, T], NotUsed]
- Definition Classes
- GraphStageWithMaterializedValue → Graph