Click or drag to resize
Akka.NETGraphStageLogicGrabT Method (InletT)
Once the callback OnPush for an input port has been invoked, the element that has been pushed can be retrieved via this method. After GrabT(InletT) has been called the port is considered to be empty, and further calls to GrabT(InletT) will fail until the port is pulled again and a new element is pushed as a response. The method IsAvailable(Inlet) can be used to query if the port has an element that can be grabbed or not.

Namespace:  Akka.Streams.Stage
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected T Grab<T>(
	Inlet<T> inlet
)

Parameters

inlet
Type: Akka.StreamsInletT
TBD

Type Parameters

T
TBD

Return Value

Type: T
TBD
See Also