Flow

object Flow
Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(t: Task*): Flow
def par(l: Seq[Flow]): Flow

Creates a parallel Flow from a collection of Flows.

Creates a parallel Flow from a collection of Flows.

Value Params
l

The collection of Flows

Returns

A Flow that executes the given collection in parallel

See also
Example

Flow.par(Seq(t1,t2,t3)) = t1 | t2 | t3

def seq(l: Seq[Flow]): Flow

Creates a sequence of a collection of Flows.

Creates a sequence of a collection of Flows.

Value Params
l

The collection of Flows

Returns

A Flow that executes the given collection in sequence

See also
Example

Flow.seq(Seq(t1,t2,t3)) = t1 > t2 > t3

Givens

Givens