2 references to QueueAsync
Microsoft.CodeAnalysis.Workspaces (2)
SerializationThreadPool.cs (2)
46public static Task<object?> QueueAsync(Func<object?> threadStart) => QueueAsync(threadStart, state: null); 52public static Task<object?> QueueAsync(Func<object?, object?> threadStart, object? state) => QueueAsync((Delegate)threadStart, state);