| GraphStageLogicPull Method (Inlet) |
Requests an element on the given port. Calling this method twice before an element arrived will fail.
There can only be one outstanding request at any given time.The method
HasBeenPulled(Inlet) can be used
query whether pull is allowed to be called or not.This method will also fail if the port is already closed.
Namespace:
Akka.Streams.Stage
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax protected void Pull(
Inlet inlet
)
member Pull :
inlet : Inlet -> unit
Parameters
- inlet
- Type: Akka.StreamsInlet
TBD
Exceptions Exception | Condition |
---|
ArgumentException |
This exception is thrown when either the specified inlet is closed or already pulled.
|
See Also