Method | Description | |
---|---|---|
ThreadPool_QueueUserWorkItem ( WaitCallback callBack ) : void |
Queues a method for execution. The method executes when a thread pool thread becomes available.
|
|
ThreadPool_QueueUserWorkItem ( WaitCallback callBack, object state, Action |
Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.
|
public static ThreadPool_QueueUserWorkItem ( WaitCallback callBack ) : void | ||
callBack | WaitCallback | |
return | void |
public static ThreadPool_QueueUserWorkItem ( WaitCallback callBack, object state, Action |
||
callBack | WaitCallback | |
state | object | |
failedAction | Action |
|
return | void |