File: AsyncWorker.fsi

package info (click to toggle)
fsharp 3.1.1.26%2Bdfsg2-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 59,244 kB
  • ctags: 4,190
  • sloc: cs: 13,398; ml: 1,098; sh: 399; makefile: 293; xml: 82
file content (20 lines) | stat: -rwxr-xr-x 612 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// (c) Microsoft Corporation 2005-2009.
namespace Microsoft.FSharp.Control

    open System
    open System.Threading
    open Microsoft.FSharp.Control

#if FX_NO_SYNC_CONTEXT
#else
    type AsyncWorker<'T> =
        new : Async<'T> * ?asyncGroup: CancellationToken -> 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