ThreadPool.cs 734 B

123456789101112131415
  1. namespace System.Threading
  2. {
  3. partial class ThreadPool
  4. {
  5. internal static void UnsafeQueueUserWorkItemInternal (object callBack, bool preferLocal) => throw new NotImplementedException ();
  6. internal static bool TryPopCustomWorkItem (object workItem) => throw new NotImplementedException ();
  7. public static bool QueueUserWorkItem<TState> (Action<TState> callBack, TState state, bool preferLocal) => throw new NotImplementedException ();
  8. public static bool UnsafeQueueUserWorkItem<TState> (Action<TState> callBack, TState state, bool preferLocal) => throw new NotImplementedException ();
  9. public static bool UnsafeQueueUserWorkItem (IThreadPoolWorkItem callBack, bool preferLocal) => throw new NotImplementedException ();
  10. }
  11. }