Method | Description | |
---|---|---|
SafeQueueWorkItem ( ThreadStart start ) : void |
Queues an action into the threadpool
|
|
Start ( ThreadStart start ) : void |
Starts a new thread with an action
|
Method | Description | |
---|---|---|
ActionConsumer ( ) : void |
Main body of a threadpool thread. Indefinitely wait until an action is queued. When an action is de-queued safely execute it
|
public static SafeQueueWorkItem ( ThreadStart start ) : void | ||
start | ThreadStart | |
return | void |
public static Start ( ThreadStart start ) : void | ||
start | ThreadStart | |
return | void |