C# 클래스 Encog.Engine.Concurrency.Job.PoolItem

An item in the thread pool.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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