C# Class Encog.Engine.Concurrency.Job.PoolItem

An item in the thread pool.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
PoolItem ( EngineConcurrency owner, IEngineTask task, TaskGroup group ) : System

Construct a pool item.

ThreadPoolCallback ( Object threadContext ) : void

The thread callback. This actually executes the task.

Method Details

PoolItem() public méthode

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.
Résultat System

ThreadPoolCallback() public méthode

The thread callback. This actually executes the task.
public ThreadPoolCallback ( Object threadContext ) : void
threadContext Object The thread context, not used.
Résultat void