object Graph
- Source
- Graph.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Graph
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- 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
- 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.