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