Class SinkShape<TIn>
A Sink Shape has exactly one input and no outputs, it models a data sink.
Implements
Inherited Members
Namespace: Akka.Streams
Assembly: Akka.Streams.dll
Syntax
public sealed class SinkShape<TIn> : Shape, ICloneable
Type Parameters
| Name | Description |
|---|---|
| TIn | TBD |
Constructors
| Edit this page View SourceSinkShape(Inlet<TIn>)
TBD
Declaration
public SinkShape(Inlet<TIn> inlet)
Parameters
| Type | Name | Description |
|---|---|---|
| Inlet<TIn> | inlet | TBD |
Exceptions
| Type | Condition |
|---|---|
| ArgumentNullException | This exception is thrown when the specified |
Fields
| Edit this page View SourceInlet
TBD
Declaration
public readonly Inlet<TIn> Inlet
Field Value
| Type | Description |
|---|---|
| Inlet<TIn> |
Properties
| Edit this page View SourceInlets
TBD
Declaration
public override ImmutableArray<Inlet> Inlets { get; }
Property Value
| Type | Description |
|---|---|
| ImmutableArray<Inlet> |
Overrides
| Edit this page View SourceOutlets
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 |
Overrides
| Edit this page View SourceEquals(object)
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj |
Returns
| Type | Description |
|---|---|
| bool |
Overrides
| Edit this page View SourceGetHashCode()
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int |
Edit this page