Class OutGraphStageLogic
A GraphStageLogic that implements IOutHandler.
Inherited Members
Namespace: Akka.Streams.Stage
Assembly: Akka.Streams.dll
Syntax
public abstract class OutGraphStageLogic : GraphStageLogic, IStageLogging, IOutHandler
Constructors
| Improve this Doc View SourceOutGraphStageLogic(Shape)
TBD
Declaration
protected OutGraphStageLogic(Shape shape)
Parameters
Type | Name | Description |
---|---|---|
Shape | shape | TBD |
OutGraphStageLogic(Int32, Int32)
TBD
Declaration
protected OutGraphStageLogic(int inCount, int outCount)
Parameters
Type | Name | Description |
---|---|---|
Int32 | inCount | TBD |
Int32 | outCount | TBD |
Methods
| Improve this Doc View SourceOnDownstreamFinish(Exception)
Called when the output port will no longer accept any new elements. After this callback no other callbacks will be called for this port.
Declaration
public virtual void OnDownstreamFinish(Exception cause)
Parameters
Type | Name | Description |
---|---|---|
Exception | cause |
OnPull()
Called when the output port has received a pull, and therefore ready to emit an element, i.e. Push<T>(Outlet<T>, T) is now allowed to be called on this port.
Declaration
public abstract void OnPull()