Packages

final case class RunnableGraph[+Mat](module: Module) extends Graph[ClosedShape, Mat] with Product with Serializable

Flow with attached input and output, can be executed.

Source
Flow.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RunnableGraph
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Graph
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RunnableGraph(module: Module)

Type Members

  1. type Shape = ClosedShape

    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

  1. def addAttributes(attr: Attributes): RunnableGraph[Mat]
    Definition Classes
    RunnableGraphGraph
  2. def async: RunnableGraph[Mat]

    Put an asynchronous boundary around this Graph

    Put an asynchronous boundary around this Graph

    Definition Classes
    RunnableGraphGraph
  3. def mapMaterializedValue[Mat2](f: (Mat) ⇒ Mat2): RunnableGraph[Mat2]

    Transform only the materialized value of this RunnableGraph, leaving all other properties as they were.

  4. val module: Module
    Definition Classes
    RunnableGraphGraph
  5. def named(name: String): RunnableGraph[Mat]
    Definition Classes
    RunnableGraphGraph
  6. def run()(implicit materializer: Materializer): Mat

    Run this flow and return the materialized instance from the flow.

  7. def shape: ClosedShape.type

    The shape of a graph is all that is externally visible: its inlets and outlets.

    The shape of a graph is all that is externally visible: its inlets and outlets.

    Definition Classes
    RunnableGraphGraph
  8. def withAttributes(attr: Attributes): RunnableGraph[Mat]
    Definition Classes
    RunnableGraphGraph