Click or drag to resize
Akka.NETGraphStageLogicGetAsyncCallback Method (Action)
Obtain a callback object that can be used asynchronously to re-enter the current GraphStageTShape with an asynchronous notification. The delegate returned is safe to be called from other threads and it will in the background thread-safely delegate to the passed callback function. I.e. it will be called by the external world and the passed handler will be invoked eventually in a thread-safe way by the execution environment. This object can be cached and reused within the same GraphStageLogic.

Namespace:  Akka.Streams.Stage
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected Action GetAsyncCallback(
	Action handler
)

Parameters

handler
Type: SystemAction
TBD

Return Value

Type: Action
TBD
See Also