Click or drag to resize
Akka.NETIRunnableGraphTMat Interface
Flow with attached input and output, can be executed.

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IRunnableGraph<out TMat> : IGraph<ClosedShape, TMat>, 
	IGraph<ClosedShape>

Type Parameters

TMat
TBD

The IRunnableGraphTMat type exposes the following members.

Properties
Methods
  NameDescription
Public methodAddAttributes
Add the given attributes to this IGraphTShape. Further calls to WithAttributes(Attributes) will not remove these attributes. Note that this operation has no effect on an empty Flow (because the attributes apply only to the contained processing stages).
Public methodAsync
Put an asynchronous boundary around this Graph.
(Inherited from IGraphTShape, TMaterialized.)
Public methodMapMaterializedValueTMat2
Transform only the materialized value of this RunnableGraph, leaving all other properties as they were.
Public methodNamed
Add a name attribute to this Graph.
Public methodRun
Run this flow and return the materialized instance from the flow.
Public methodWithAttributes
Change the attributes of this IGraphTShape to the given ones and seal the list of attributes. This means that further calls will not be able to remove these attributes, but instead add new ones. Note that this operation has no effect on an empty Flow (because the attributes apply only to the contained processing stages).
Top
See Also