abstract class RunnableGraph[+Mat] extends Graph[ClosedShape, Mat]

Java API

Flow with attached input and output, can be executed.

Source
Flow.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RunnableGraph
  2. Graph
  3. AnyRef
  4. 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()

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

Abstract Value Members

  1. abstract def mapMaterializedValue[Mat2](f: Function[Mat, Mat2]): RunnableGraph[Mat2]

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

  2. abstract def run(materializer: Materializer): Mat

    Run this flow and return the materialized values of the flow.

  3. abstract def shape: ClosedShape

    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
    Graph
  4. abstract def withAttributes(attr: Attributes): RunnableGraph[Mat]
    Definition Classes
    RunnableGraphGraph

Concrete Value Members

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

    Put an asynchronous boundary around this Graph

    Put an asynchronous boundary around this Graph

    Definition Classes
    Graph
  3. def named(name: String): RunnableGraph[Mat]
    Definition Classes
    RunnableGraphGraph