Interface IAsyncContext<TOut, TExt>
TBD
Inherited Members
Namespace: Akka.Streams.Stage
Assembly: Akka.Streams.dll
Syntax
public interface IAsyncContext<in TOut, in TExt> : IAsyncContext, IDetachedContext<TOut>, IDetachedContext, IContext<TOut>, IContext, ILifecycleContext
Type Parameters
Name | Description |
---|---|
TOut | TBD |
TExt | TBD |
Methods
| Improve this Doc View SourceGetAsyncCallback()
Obtain a callback object that can be used asynchronously to re-enter the current IAsyncContext<TOut, TExt> with an asynchronous notification. After the notification has been invoked, eventually Akka.Streams.Implementation.Fusing.GraphInterpreter.OnAsyncInput will be called with the given data item.
This object can be cached and reused within the same IAsyncContext<TOut, TExt>.
Declaration
AsyncCallback<TExt> GetAsyncCallback()
Returns
Type | Description |
---|---|
AsyncCallback<TExt> | TBD |