Click or drag to resize
IAwaiterT Interface
The awaiter of a future.

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

Type Parameters

T
The type of the value represented by the future.

The IAwaiterT type exposes the following members.

Properties
  NameDescription
Public propertyIsCompleted
Returns if the value of the awaitable is already available and the execution may proceed synchronously.
Top
Methods
  NameDescription
Public methodGetResult
Waits for the awaitable to complete and returns the value represented by it.
Public methodOnCompleted
Schedules the continuation action that's invoked when the instance completes.
(Inherited from INotifyCompletion.)
Top
Remarks
The structure of this type is required by the .Net framework.
See Also