C# Class Encog.Util.Concurrency.PoolItem

Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

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.
return System

ThreadPoolCallback() public method

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