C# Класс Encog.Engine.Concurrency.Job.PoolItem

An item in the thread pool.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
PoolItem ( EngineConcurrency owner, IEngineTask task, TaskGroup group ) : System

Construct a pool item.

ThreadPoolCallback ( Object threadContext ) : void

The thread callback. This actually executes the task.

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

PoolItem() публичный Метод

Construct a pool item.
public PoolItem ( EngineConcurrency owner, IEngineTask task, TaskGroup group ) : System
owner EngineConcurrency The owner of this task.
task IEngineTask The task to execute.
group TaskGroup The group that this task belongs to.
Результат System

ThreadPoolCallback() публичный Метод

The thread callback. This actually executes the task.
public ThreadPoolCallback ( Object threadContext ) : void
threadContext Object The thread context, not used.
Результат void