Package akka.stream.scaladsl
Class Partition<T>
- java.lang.Object
 - 
- akka.stream.stage.GraphStageWithMaterializedValue<S,NotUsed>
 - 
- akka.stream.stage.GraphStage<UniformFanOutShape<T,T>>
 - 
- akka.stream.scaladsl.Partition<T>
 
 
 
 
- 
- All Implemented Interfaces:
 Graph<UniformFanOutShape<T,T>,NotUsed>
public 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 elementAdheres to the
ActorAttributes.SupervisionStrategyattribute.'''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''' all downstreams have cancelled (eagerCancel=false) or one downstream cancels (eagerCancel=true)
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPartition.PartitionOutOfBoundsExceptionstatic classPartition.PartitionOutOfBoundsException$- 
Nested classes/interfaces inherited from interface akka.stream.Graph
Graph.GraphMapMatVal<S extends Shape,M> 
 - 
 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> Partition<T>apply(int outputPorts, scala.Function1<T,java.lang.Object> partitioner)Create a newPartitionoperator with the specified input type.GraphStageLogiccreateLogic(Attributes inheritedAttributes)booleaneagerCancel()Inlet<T>in()scala.collection.immutable.Seq<Outlet<T>>out()intoutputPorts()scala.Function1<T,java.lang.Object>partitioner()UniformFanOutShape<T,T>shape()The shape of a graph is all that is externally visible: its inlets and outlets.java.lang.StringtoString()- 
Methods inherited from class akka.stream.stage.GraphStage
createLogicAndMaterializedValue 
- 
Methods inherited from class akka.stream.stage.GraphStageWithMaterializedValue
initialAttributes, withAttributes 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface akka.stream.Graph
addAttributes, async, async, async, getAttributes, named 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
Partition
public Partition(int outputPorts, scala.Function1<T,java.lang.Object> partitioner, boolean eagerCancel) 
 - 
 
- 
Method Detail
- 
apply
public static <T> Partition<T> apply(int outputPorts, scala.Function1<T,java.lang.Object> partitioner)
Create a newPartitionoperator with the specified input type. This method setseagerCanceltofalse. To specify a different value for theeagerCancelparameter, then instantiate Partition using the constructor.If
eagerCancelis true, partition cancels upstream if any of its downstreams cancel, if false, when all have cancelled.- Parameters:
 outputPorts- number of output portspartitioner- function deciding which output each element will be targeted
 
- 
outputPorts
public int outputPorts()
 
- 
partitioner
public scala.Function1<T,java.lang.Object> partitioner()
 
- 
eagerCancel
public boolean eagerCancel()
 
- 
shape
public UniformFanOutShape<T,T> shape()
Description copied from interface:GraphThe shape of a graph is all that is externally visible: its inlets and outlets. 
- 
createLogic
public GraphStageLogic createLogic(Attributes inheritedAttributes)
- Specified by:
 createLogicin classGraphStage<UniformFanOutShape<T,T>>
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -