Async.FromBeginEnd<'Arg1,'T> Method (F#)
Creates an asynchronous computation in terms of a Begin/End pair of actions in the style used in CLI APIs.
Namespace/Module Path: Microsoft.FSharp.Control
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
static member FromBeginEnd : 'Arg1 * ('Arg1 * AsyncCallback * obj -> IAsyncResult) * (IAsyncResult -> 'T) * ?(unit -> unit) -> Async<'T>
// Usage:
Async.FromBeginEnd (arg, beginAction, endAction)
Async.FromBeginEnd (arg, beginAction, endAction, cancelAction = cancelAction)
Parameters
arg
Type: 'Arg1The argument for the operation.
beginAction
Type: 'Arg1 * AsyncCallback * obj -> IAsyncResultThe function initiating a traditional CLI asynchronous operation.
endAction
Type: IAsyncResult -> 'TThe function completing a traditional CLI asynchronous operation.
cancelAction
Type: (unit -> unit)An optional function to be executed when a cancellation is requested.
Return Value
An asynchronous computation wrapping the given Begin/End functions.
Remarks
This overload should be used if the operation is qualified by one argument. For example, you can create an asynchronous computation for a web service call with the following code.
Async.FromBeginEnd(place,ws.BeginGetWeather,ws.EndGetWeather)
When the computation is run, beginFunc is executed, with a callback which represents the continuation of the computation. When the callback is invoked, the overall result is fetched using endFunc.
The computation will respond to cancellation while waiting for the completion of the operation. If a cancellation occurs, and cancelAction is specified, then it is executed, and the computation continues to wait for the completion of the operation. If cancelAction is not specified, then cancellation causes the computation to stop immediately, and subsequent invocations of the callback are ignored.
For an example, see Async.FromBeginEnd<'T> Method (F#).
Platforms
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Version Information
F# Core Library Versions
Supported in: 2.0, 4.0, Portable