Interface IAsyncFuture<T>
Defines an interface that returns the value from the asynchronous operation.
Namespace: Neon.Tasks
Assembly: Neon.Common.dll
Syntax
public interface IAsyncFuture<T>
Type Parameters
Name | Description |
---|---|
T | The result type. |
Methods
GetAsync()
Returns the value from the operation.
Declaration
Task<T> GetAsync()
Returns
Type | Description |
---|---|
Task<T> | The future. |