C# Класс Subtext.Framework.Threading.ManagedThreadPool

Managed thread pool.
Показать файл Открыть проект

Открытые методы

Метод Описание
EmptyQueue ( ) : void

Empties the work queue of any queued work items.

QueueUserWorkItem ( WaitCallback callback ) : void

Queues a user work item to the thread pool.

QueueUserWorkItem ( WaitCallback callback, object state ) : void

Queues a user work item to the thread pool.

Приватные методы

Метод Описание
ManagedThreadPool ( ) : System

Initialize the thread pool.

ProcessQueuedItems ( ) : void

A thread worker function that processes items from the work queue.

Описание методов

EmptyQueue() публичный статический Метод

Empties the work queue of any queued work items.
public static EmptyQueue ( ) : void
Результат void

QueueUserWorkItem() публичный статический Метод

Queues a user work item to the thread pool.
public static QueueUserWorkItem ( WaitCallback callback ) : void
callback WaitCallback /// A WaitCallback representing the delegate to invoke when the thread in the /// thread pool picks up the work item. ///
Результат void

QueueUserWorkItem() публичный статический Метод

Queues a user work item to the thread pool.
public static QueueUserWorkItem ( WaitCallback callback, object state ) : void
callback WaitCallback /// A WaitCallback representing the delegate to invoke when the thread in the /// thread pool picks up the work item. ///
state object /// The object that is passed to the delegate when serviced from the thread pool. ///
Результат void