Class GraphDelegate<TShape, TMat>
Allows creating additional API on top of an existing Graph by extending from this class and
accessing the delegate
Inheritance
GraphDelegate<TShape, TMat>
Assembly: Akka.Streams.dll
Syntax
public abstract class GraphDelegate<TShape, TMat> : IGraph<TShape, TMat>, IGraph<TShape> where TShape : Shape
Type Parameters
Name |
Description |
TShape |
|
TMat |
|
Constructors
|
Improve this Doc
View Source
GraphDelegate(IGraph<TShape, TMat>)
Declaration
protected GraphDelegate(IGraph<TShape, TMat> inner)
Parameters
Type |
Name |
Description |
IGraph<TShape, TMat> |
inner |
|
Fields
|
Improve this Doc
View Source
Inner
Declaration
protected readonly IGraph<TShape, TMat> Inner
Field Value
Type |
Description |
IGraph<TShape, TMat> |
|
Properties
|
Improve this Doc
View Source
Module
Declaration
public IModule Module { get; }
Property Value
|
Improve this Doc
View Source
Shape
Declaration
public TShape Shape { get; }
Property Value
Methods
|
Improve this Doc
View Source
AddAttributes(Attributes)
Declaration
public IGraph<TShape, TMat> AddAttributes(Attributes attributes)
Parameters
Returns
Type |
Description |
IGraph<TShape, TMat> |
|
|
Improve this Doc
View Source
Async()
Declaration
public IGraph<TShape, TMat> Async()
Returns
Type |
Description |
IGraph<TShape, TMat> |
|
|
Improve this Doc
View Source
Named(String)
Declaration
public IGraph<TShape, TMat> Named(string name)
Parameters
Type |
Name |
Description |
String |
name |
|
Returns
Type |
Description |
IGraph<TShape, TMat> |
|
|
Improve this Doc
View Source
WithAttributes(Attributes)
Declaration
public IGraph<TShape, TMat> WithAttributes(Attributes attributes)
Parameters
Returns
Type |
Description |
IGraph<TShape, TMat> |
|
Implements
Extension Methods