| GraphStageLogicPushT 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.129 (1.2.3.129)
Syntax protected void Push<T>(
Outlet outlet,
T element
)
member Push :
outlet : Outlet *
element : 'T -> unit
Parameters
- outlet
- Type: Akka.StreamsOutlet
TBD - element
- Type: T
TBD
Type Parameters
- T
- TBD
Exceptions Exception | Condition |
---|
ArgumentException |
This exception is thrown when either the specified outlet is closed or already pulled.
|
See Also