2 references to QueueAsync
Microsoft.CodeAnalysis (2)
Serialization\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);