class ZipWithN[A, O] extends GraphStage[UniformFanInShape[A, O]]
Combine the elements of multiple streams into a stream of sequences using a combiner function.
A ZipWithN
has a n
input ports and one out
port
Emits when all of the inputs has an element available
Backpressures when downstream backpressures
Completes when any upstream completes
Cancels when downstream cancels
- Source
- Graph.scala
- Alphabetic
- By Inheritance
- ZipWithN
- GraphStage
- GraphStageWithMaterializedValue
- Graph
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
Shape = UniformFanInShape[A, O]
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[A, O], NotUsed]
- Definition Classes
- Graph
-
def
async: Graph[UniformFanInShape[A, O], 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
- ZipWithN → GraphStage
-
final
def
createLogicAndMaterializedValue(inheritedAttributes: Attributes): (GraphStageLogic, NotUsed)
- Definition Classes
- GraphStage → GraphStageWithMaterializedValue
- val inSeq: IndexedSeq[Inlet[A]]
-
def
initialAttributes: Attributes
- Definition Classes
- ZipWithN → GraphStageWithMaterializedValue
-
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[A, O], NotUsed]
- Definition Classes
- Graph
- def out: Outlet[O]
- val shape: UniformFanInShape[A, O]
-
def
toString(): String
- Definition Classes
- ZipWithN → AnyRef → Any
-
final
def
withAttributes(attr: Attributes): Graph[UniformFanInShape[A, O], NotUsed]
- Definition Classes
- GraphStageWithMaterializedValue → Graph