Interface IGraph<TShape>
Namespace: Akka.Streams
Assembly: Akka.Streams.dll
Syntax
public interface IGraph<out TShape> where TShape : Shape
Type Parameters
| Name | Description |
|---|---|
| TShape | Type-level accessor for the shape parameter of this graph. |
Properties
| Edit this page View SourceShape
The shape of a graph is all that is externally visible: its inlets and outlets.
Declaration
TShape Shape { get; }
Property Value
| Type | Description |
|---|---|
| TShape |
Edit this page