object Graph

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

Type Members

  1. implicit final class GraphMapMatVal[S <: Shape, M] extends AnyRef

    Scala API, see https://github.com/akka/akka/issues/28501 for discussion why this can't be an instance method on class Graph.

Value Members

  1. def mapMaterializedValue[S <: Shape, M1, M2](g: Graph[S, M1])(f: (M1) => M2): Graph[S, M2]

    Java API Transform the materialized value of this Flow, leaving all other properties as they were.

    Java API Transform the materialized value of this Flow, leaving all other properties as they were.

    g

    the graph being transformed

    f

    function to map the graph's materialized value

    returns

    a graph with same semantics as the given graph, except from the materialized value which is mapped using f.