FiberContinuationOptions.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace SpicyPixel.Threading
4 {
8  [Flags, Serializable]
10  {
16  None = 0x00000,
17 
23  NotOnRanToCompletion = 0x10000,
24 
31  NotOnFaulted = 0x20000,
32 
38  NotOnCanceled = 0x40000,
39 
45  OnlyOnRanToCompletion = 0x60000,
46 
60  OnlyOnFaulted = 0x50000,
61 
67  OnlyOnCanceled = 0x30000,
68  }
69 }
70 
The continuation should not be scheduled if its antecedent was canceled.
Specifies that the continuation should not be scheduled if its antecedent threw an unhandled exceptio...
The continuation should not be scheduled if its antecedent ran to completion.
FiberContinuationOptions
Specifies the behavior for a fiber that is created by using the Fiber.ContinueWith method...
The continuation should be scheduled only if its antecedent ran to completion.
When no continuation options are specified, default behavior should be used to execute a continuation...
Specifies that the continuation should be scheduled only if its antecedent was canceled.
The continuation should be scheduled only if its antecedent threw an unhandled exception.