csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
579 B
19 lines
579 B
// (c) Microsoft Corporation 2005-2009.
|
|
namespace Microsoft.FSharp.Control
|
|
|
|
open System
|
|
open Microsoft.FSharp.Control
|
|
|
|
#if FX_NO_SYNC_CONTEXT
|
|
#else
|
|
type AsyncWorker<'T> =
|
|
new : Async<'T> * ?asyncGroup: AsyncGroup -> AsyncWorker<'T>
|
|
member ProgressChanged : IEvent<int>
|
|
member Error : IEvent<exn>
|
|
member Completed : IEvent<'T>
|
|
member Canceled : IEvent<OperationCanceledException>
|
|
member RunAsync : unit -> bool
|
|
member ReportProgress : int -> unit
|
|
member CancelAsync : ?message:string -> unit
|
|
|
|
#endif
|
|
|