Packages

object Partition

Source
Graph.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Partition
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class PartitionOutOfBoundsException(msg: String) extends IndexOutOfBoundsException with NoStackTrace with Product with Serializable

Value Members

  1. def apply[T](outputPorts: Int, partitioner: (T) ⇒ Int): Partition[T]

    Create a new Partition operator with the specified input type.

    Create a new Partition operator with the specified input type. This method sets eagerCancel to false. To specify a different value for the eagerCancel parameter, then instantiate Partition using the constructor.

    If eagerCancel is true, partition cancels upstream if any of its downstreams cancel, if false, when all have cancelled.

    outputPorts

    number of output ports

    partitioner

    function deciding which output each element will be targeted