2 references to QueueAsync
Microsoft.ML.Core (2)
Utilities\ThreadUtils.cs (2)
45public static Task QueueAsync(Action threadStart) => QueueAsync((Delegate)threadStart, null); 53public static Task QueueAsync(Action<object> threadStart, object state) => QueueAsync((Delegate)threadStart, state);