Click or drag to resize
IFutureT Interface

Namespace: AccessFlow
Assembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
public interface IFuture<out T>

Type Parameters

T
The type of the value encapsulated by the Future.

The IFutureT type exposes the following members.

Properties
  NameDescription
Public propertyValue
Waits for the IFutureT to complete and returns the value represented by it.
Top
Methods
  NameDescription
Public methodGetAwaiter
Returns the awaiter for the async/await language feature.
Top
Remarks
Objects implementing this interface can be awaited.
See Also