|
enum | AsyncCausalityStatus { Started
, Completed
, Canceled
, Error
} |
|
enum | CausalityRelation {
AssignDelegate
, Join
, Choice
, Cancel
,
Error
} |
|
enum | CausalitySynchronousWork { CompletionNotification
, ProgressNotification
, Execution
} |
|
enum | CausalityTraceLevel { Required
, Important
, Verbose
} |
|
enum | InternalTaskOptions {
None = 0
, InternalOptionsMask = 65280
, ContinuationTask = 512
, PromiseTask = 1024
,
LazyCancellation = 4096
, QueuedByRuntime = 8192
, DoNotDispose = 16384
} |
|
enum | TaskContinuationOptions {
None = 0
, PreferFairness = 1
, LongRunning = 2
, AttachedToParent = 4
,
DenyChildAttach = 8
, HideScheduler = 16
, LazyCancellation = 32
, RunContinuationsAsynchronously = 64
,
NotOnRanToCompletion = 65536
, NotOnFaulted = 131072
, NotOnCanceled = 262144
, OnlyOnRanToCompletion = 393216
,
OnlyOnFaulted = 327680
, OnlyOnCanceled = 196608
, ExecuteSynchronously = 524288
} |
|
enum | TaskCreationOptions {
None = 0
, PreferFairness = 1
, LongRunning = 2
, AttachedToParent = 4
,
DenyChildAttach = 8
, HideScheduler = 16
, RunContinuationsAsynchronously = 64
} |
|
enum | TaskStatus {
Created
, WaitingForActivation
, WaitingToRun
, Running
,
WaitingForChildrenToComplete
, RanToCompletion
, Canceled
, Faulted
} |
|