Method | Description | |
---|---|---|
QueueUserWorkItem ( ContextCallback callback, |
Queues a work item for processing on the managed thread pool This differs from the normal thread pool QueueUserWorkItem function in that it does not return a success value determing if item was queued, but rather a reference to to the managed thread that was actually placed on the queue. |
|
QueueUserWorkItem ( ContextCallback callback, object state, |
Queues a work item for processing on the managed thread pool This differs from the normal thread pool QueueUserWorkItem function in that it does not return a success value determing if item was queued, but rather a reference to to the managed thread that was actually placed on the queue. |
|
QueueUserWorkItem ( ParameterizedThreadStart callback ) : GSF.Threading.ManagedThread |
Queues a work item for processing on the managed thread pool This differs from the normal thread pool QueueUserWorkItem function in that it does not return a success value determing if item was queued, but rather a reference to to the managed thread that was actually placed on the queue. |
|
QueueUserWorkItem ( ParameterizedThreadStart callback, object state ) : GSF.Threading.ManagedThread |
Queues a work item for processing on the managed thread pool This differs from the normal thread pool QueueUserWorkItem function in that it does not return a success value determing if item was queued, but rather a reference to to the managed thread that was actually placed on the queue. |
|
QueueUserWorkItem ( ThreadStart callback ) : GSF.Threading.ManagedThread |
Queues a work item for processing on the managed thread pool This differs from the normal thread pool QueueUserWorkItem function in that it does not return a success value determing if item was queued, but rather a reference to to the managed thread that was actually placed on the queue. |
Method | Description | |
---|---|---|
HandleItem ( object state ) : void |
public static QueueUserWorkItem ( ContextCallback callback, |
||
callback | ContextCallback | A WaitCallback representing the method to execute. |
ctx | Alternate execution context in which to run the thread. | |
return | GSF.Threading.ManagedThread |
public static QueueUserWorkItem ( ContextCallback callback, object state, |
||
callback | ContextCallback | A WaitCallback representing the method to execute. |
state | object | An object containing data to be used by the method. |
ctx | Alternate execution context in which to run the thread. | |
return | GSF.Threading.ManagedThread |
public static QueueUserWorkItem ( ParameterizedThreadStart callback ) : GSF.Threading.ManagedThread | ||
callback | ParameterizedThreadStart | A WaitCallback representing the method to execute. |
return | GSF.Threading.ManagedThread |
public static QueueUserWorkItem ( ParameterizedThreadStart callback, object state ) : GSF.Threading.ManagedThread | ||
callback | ParameterizedThreadStart | A WaitCallback representing the method to execute. |
state | object | An object containing data to be used by the method. |
return | GSF.Threading.ManagedThread |
public static QueueUserWorkItem ( ThreadStart callback ) : GSF.Threading.ManagedThread | ||
callback | ThreadStart | A WaitCallback representing the method to execute. |
return | GSF.Threading.ManagedThread |