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
| Improve this Doc 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
| Improve this Doc 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 |
---|---|
System.Collections.Immutable.ImmutableArray<Inlet> |
Overrides
| Improve this Doc 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 |
---|---|
System.Collections.Immutable.ImmutableArray<Outlet> |
Overrides
Methods
| Improve this Doc View SourceCopyFromPorts(ImmutableArray<Inlet>, ImmutableArray<Outlet>)
TBD
Declaration
public override Shape CopyFromPorts(ImmutableArray<Inlet> inlets, ImmutableArray<Outlet> outlets)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Immutable.ImmutableArray<Inlet> | inlets | TBD |
System.Collections.Immutable.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 |
Overrides
Explicit Interface Implementations
| Improve this Doc View SourceIFlowShape.Inlet
Declaration
Inlet IFlowShape.Inlet { get; }
Returns
Type | Description |
---|---|
Inlet |
IFlowShape.Outlet
Declaration
Outlet IFlowShape.Outlet { get; }
Returns
Type | Description |
---|---|
Outlet |