Click or drag to resize
Akka.NETGraphStageLogicPushT Method
Emits an element through the given output port. Calling this method twice before a PullT(InletT) has been arrived will fail. There can be only one outstanding push request at any given time. The method IsAvailable(Inlet) can be used to check if the port is ready to be pushed or not.

Namespace:  Akka.Streams.Stage
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected void Push<T>(
	Outlet outlet,
	T element
)

Parameters

outlet
Type: Akka.StreamsOutlet
TBD
element
Type: T
TBD

Type Parameters

T
TBD
Exceptions
ExceptionCondition
ArgumentException This exception is thrown when either the specified outlet is closed or already pulled.
See Also