Enum EvergineTaskContinueOn
Represents the options to configure the continuation of a task using EvergineConfiguredAwaiter or EvergineConfiguredAwaiter<T>.
Namespace: Evergine.Framework.Threading
Assembly: Evergine.Framework.dll
Syntax
public enum EvergineTaskContinueOn
Fields
Name | Description |
---|---|
Background | The continuation will be scheduled in the BackgroundTaskScheduler. |
Default | The default continuation behavior. |
Foreground | The continuation will be scheduled in the ForegroundTaskScheduler. |
ThreadPool | The continuation is scheduled in the default thread pool. |