Click or drag to resize
Akka.NETGraphStageLogicGetAsyncCallbackT Method (ActionT)
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<T> GetAsyncCallback<T>(
	Action<T> handler
)

Parameters

handler
Type: SystemActionT
TBD

Type Parameters

T
TBD

Return Value

Type: ActionT
TBD
See Also