A handle to an asynchronous computation. The Async.AsyncFuture member allows you to
spawn a computation and at a later point synchronize on its result.
Each IAsyncFuture object may consume an OS resource in the form of a WaitHandle.
Full Type Signature
[<ExperimentalAttribute ("This type is part of an experimental feature called 'asynchronous workflows'")>]
type IAsyncFuture<'a> = interface
inherit IDisposable
abstract member AsIAsyncResult : IAsyncResult
abstract member Value : 'a
end
Instance Members
Member | Description |
member AsIAsyncResult : IAsyncResult | |
member Value : 'a |
Wait for the completion of the operation and get its result
|
|