Package akka.stream.scaladsl
Class Partition$
- java.lang.Object
 - 
- akka.stream.scaladsl.Partition$
 
 
- 
public class Partition$ extends java.lang.Object 
- 
- 
Field Summary
Fields Modifier and Type Field Description static Partition$MODULE$Static reference to the singleton instance of this Scala object. 
- 
Constructor Summary
Constructors Constructor Description Partition$() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Partition<T>apply(int outputPorts, scala.Function1<T,java.lang.Object> partitioner)Create a newPartitionoperator with the specified input type. 
 - 
 
- 
- 
Field Detail
- 
MODULE$
public static final Partition$ MODULE$
Static reference to the singleton instance of this Scala object. 
 - 
 
- 
Method Detail
- 
apply
public <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
 
 - 
 
 -