Interface IAsyncContinuation
A generic non-delegate continuation.
Namespace: UnityFx.Async
Assembly: UnityFx.Async-netstandard2.0.dll
Syntax
public interface IAsyncContinuation
Remarks
This interface is a great helper for combining functionality and reducing number of allocations. It is especially useful for implementing custom continuation operations.
Methods
| Improve this Doc View SourceInvoke(IAsyncOperation)
Invokes the continuation.
Declaration
void Invoke(IAsyncOperation op)
Parameters
Type | Name | Description |
---|---|---|
IAsyncOperation | op | The completed antecedent operation. |