Class FlowShape<TIn, TOut>
A Flow Shape has exactly one input and one output, it looks from the outside like a pipe (but it can be a complex topology of streams within of course).
Inherited Members
Namespace: Akka.Streams
Assembly: Akka.Streams.dll
Syntax
public sealed class FlowShape<TIn, TOut> : Shape, ICloneable, IFlowShape
Type Parameters
| Name | Description |
|---|---|
| TIn | TBD |
| TOut | TBD |
Constructors
| Edit this page View SourceFlowShape(Inlet<TIn>, Outlet<TOut>)
TBD
Declaration
public FlowShape(Inlet<TIn> inlet, Outlet<TOut> outlet)
Parameters
| Type | Name | Description |
|---|---|---|
| Inlet<TIn> | inlet | TBD |
| Outlet<TOut> | outlet | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when either the specified |
Properties
| Edit this page View SourceInlet
TBD
Declaration
public Inlet<TIn> Inlet { get; }
Property Value
| Type | Description |
|---|---|
| Inlet<TIn> |
Inlets
TBD
Declaration
public override ImmutableArray<Inlet> Inlets { get; }
Property Value
| Type | Description |
|---|---|
| ImmutableArray<Inlet> |
Overrides
| Edit this page View SourceOutlet
TBD
Declaration
public Outlet<TOut> Outlet { get; }
Property Value
| Type | Description |
|---|---|
| Outlet<TOut> |
Outlets
TBD
Declaration
public override ImmutableArray<Outlet> Outlets { get; }
Property Value
| Type | Description |
|---|---|
| ImmutableArray<Outlet> |
Overrides
Methods
| Edit this page View SourceCopyFromPorts(ImmutableArray<Inlet>, ImmutableArray<Outlet>)
TBD
Declaration
public override Shape CopyFromPorts(ImmutableArray<Inlet> inlets, ImmutableArray<Outlet> outlets)
Parameters
| Type | Name | Description |
|---|---|---|
| ImmutableArray<Inlet> | inlets | TBD |
| ImmutableArray<Outlet> | outlets | TBD |
Returns
| Type | Description |
|---|---|
| Shape | TBD |
Overrides
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | This exception is thrown when the size of the specified |
DeepCopy()
TBD
Declaration
public override Shape DeepCopy()
Returns
| Type | Description |
|---|---|
| Shape | TBD |
Edit this page