Class InGraphStageLogic
A GraphStageLogic that implements IInHandler.
Inherited Members
Namespace: Akka.Streams.Stage
Assembly: Akka.Streams.dll
Syntax
public abstract class InGraphStageLogic : GraphStageLogic, IStageLogging, IInHandler
Constructors
| Improve this Doc View SourceInGraphStageLogic(Shape)
TBD
Declaration
protected InGraphStageLogic(Shape shape)
Parameters
Type | Name | Description |
---|---|---|
Shape | shape | TBD |
InGraphStageLogic(Int32, Int32)
TBD
Declaration
protected InGraphStageLogic(int inCount, int outCount)
Parameters
Type | Name | Description |
---|---|---|
Int32 | inCount | TBD |
Int32 | outCount | TBD |
Methods
| Improve this Doc View SourceOnPush()
Called when the input port has a new element available. The actual element can be retrieved via the Grab<T>(Inlet<T>) method.
Declaration
public abstract void OnPush()
OnUpstreamFailure(Exception)
Called when the input port has failed. After this callback no other callbacks will be called for this port.
Declaration
public virtual void OnUpstreamFailure(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | TBD |
OnUpstreamFinish()
Called when the input port is finished. After this callback no other callbacks will be called for this port.
Declaration
public virtual void OnUpstreamFinish()