|
enum | AsyncCausalityStatus { Started
, Completed
, Canceled
, Error
} |
|
enum | CausalityRelation {
AssignDelegate
, Join
, Choice
, Cancel
,
Error
} |
|
enum | CausalitySynchronousWork { CompletionNotification
, ProgressNotification
, Execution
} |
|
enum | InternalTaskOptions {
None = 0
, InternalOptionsMask = 0xFF00
, ContinuationTask = 0x200
, PromiseTask = 0x400
,
LazyCancellation = 0x1000
, QueuedByRuntime = 0x2000
, DoNotDispose = 0x4000
} |
|
enum | TaskContinuationOptions {
None = 0
, PreferFairness = 1
, LongRunning = 2
, AttachedToParent = 4
,
DenyChildAttach = 8
, HideScheduler = 0x10
, LazyCancellation = 0x20
, RunContinuationsAsynchronously = 0x40
,
NotOnRanToCompletion = 0x10000
, NotOnFaulted = 0x20000
, NotOnCanceled = 0x40000
, OnlyOnRanToCompletion = 0x60000
,
OnlyOnFaulted = 0x50000
, OnlyOnCanceled = 0x30000
, ExecuteSynchronously = 0x80000
} |
|
enum | TaskCreationOptions {
None = 0
, PreferFairness = 1
, LongRunning = 2
, AttachedToParent = 4
,
DenyChildAttach = 8
, HideScheduler = 0x10
, RunContinuationsAsynchronously = 0x40
} |
|
enum | TaskStatus {
Created
, WaitingForActivation
, WaitingToRun
, Running
,
WaitingForChildrenToComplete
, RanToCompletion
, Canceled
, Faulted
} |
|