final class Partition[T] extends GraphStage[UniformFanOutShape[T, T]]
Fan-out the stream to several streams. emitting an incoming upstream element to one downstream consumer according to the partitioner function applied to the element
Emits when emits when an element is available from the input and the chosen output has demand
Backpressures when the currently chosen output back-pressures
Completes when upstream completes and no output is pending
Cancels when when all downstreams cancel
- Source
- Graph.scala
- Alphabetic
- By Inheritance
- Partition
- GraphStage
- GraphStageWithMaterializedValue
- Graph
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Type Members
-
type
Shape = UniformFanOutShape[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[UniformFanOutShape[T, T], NotUsed]
- Definition Classes
- Graph
-
def
async: Graph[UniformFanOutShape[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
- Partition → GraphStage
-
final
def
createLogicAndMaterializedValue(inheritedAttributes: Attributes): (GraphStageLogic, NotUsed)
- Definition Classes
- GraphStage → GraphStageWithMaterializedValue
- val in: Inlet[T]
-
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[UniformFanOutShape[T, T], NotUsed]
- Definition Classes
- Graph
- val out: Seq[Outlet[T]]
- val outputPorts: Int
- val partitioner: (T) ⇒ Int
- val shape: UniformFanOutShape[T, T]
-
def
toString(): String
- Definition Classes
- Partition → AnyRef → Any
-
final
def
withAttributes(attr: Attributes): Graph[UniformFanOutShape[T, T], NotUsed]
- Definition Classes
- GraphStageWithMaterializedValue → Graph