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