Class SwitchToAwaiter
- Namespace
- Stride.Core.MicroThreading
- Assembly
- Stride.Core.MicroThreading.dll
public class SwitchToAwaiter : INotifyCompletion
- Inheritance
-
SwitchToAwaiter
- Implements
Constructors
SwitchToAwaiter(Scheduler)
public SwitchToAwaiter(Scheduler scheduler)
Parameters
scheduler
Scheduler
Properties
IsCompleted
public bool IsCompleted { get; }
Property Value
Methods
GetAwaiter()
public SwitchToAwaiter GetAwaiter()
Returns
GetResult()
public IDisposable GetResult()
Returns
OnCompleted(Action)
Schedules the continuation action that's invoked when the instance completes.
public void OnCompleted(Action continuation)
Parameters
continuation
ActionThe action to invoke when the operation completes.
Exceptions
- ArgumentNullException
The
continuation
argument is null (Nothing in Visual Basic).