Click or drag to resize
Akka.NETIContextTOut Interface
TBD

Namespace:  Akka.Streams.Stage
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public interface IContext<in TOut> : IContext, 
	ILifecycleContext

Type Parameters

TOut
TBD

The IContextTOut type exposes the following members.

Properties
  NameDescription
Public propertyAttributes
Returns operation attributes associated with the this Stage
(Inherited from ILifecycleContext.)
Public propertyIsFinishing (Inherited from IContext.)
Public propertyMaterializer
Returns the Materializer that was used to materialize this Stage/>. It can be used to materialize sub-flows.
(Inherited from ILifecycleContext.)
Top
Methods
  NameDescription
Public methodAbsorbTermination
Puts the stage in a finishing state so that final elements can be pushed from onPull.
(Inherited from IContext.)
Public methodFail
Cancel upstreams and complete downstreams with failure.
(Inherited from IContext.)
Public methodFinish
Cancel upstreams and complete downstreams successfully.
(Inherited from IContext.)
Public methodPull
Request for more elements from upstreams.
(Inherited from IContext.)
Public methodPush(Object)
Push one element to downstreams.
(Inherited from IContext.)
Public methodPush(TOut)
Push one element to downstreams.
Public methodPushAndFinish(Object)
Push one element to downstream immediately followed by cancel of upstreams and complete of downstreams.
(Inherited from IContext.)
Public methodPushAndFinish(TOut)
Push one element to downstream immediately followed by cancel of upstreams and complete of downstreams.
Top
See Also