2 implementations of IRuntimeAsyncTaskOps
System.Private.CoreLib (2)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (2)
274private struct Ops : IRuntimeAsyncTaskOps<RuntimeAsyncTask<T>> 356private struct Ops : IRuntimeAsyncTaskOps<RuntimeAsyncTask>
3 references to IRuntimeAsyncTaskOps
System.Private.CoreLib (3)
src\System\Runtime\CompilerServices\AsyncHelpers.CoreCLR.cs (3)
380public static unsafe void DispatchContinuations<T, TOps>(T task) where T : Task, ITaskCompletionAction where TOps : IRuntimeAsyncTaskOps<T> 461public static void HandleSuspended<T, TOps>(T task) where T : Task, ITaskCompletionAction where TOps : IRuntimeAsyncTaskOps<T> 514private static bool QueueContinuationFollowUpActionIfNecessary<T, TOps>(T task, Continuation continuation) where T : Task where TOps : IRuntimeAsyncTaskOps<T>