Cancellable Module
Functions and values
Function or value |
Description
|
Full Usage:
fold f acc seq
Parameters:
'State -> 'T -> Cancellable<'State>
acc : 'State
seq : 'T seq
Returns: Cancellable<'State>
|
|
Full Usage:
run ct arg2
Parameters:
CancellationToken
arg1 : Cancellable<'T>
Returns: ValueOrCancelled<'T>
Modifiers: inline Type parameters: 'T |
Run a cancellable computation using the given cancellation token
|
|
Run the computation in a mode where it may not be cancelled. The computation never results in a ValueOrCancelled.Cancelled.
|
|
|
|
Bind the cancellation token associated with the computation
|