示例#1
0
 internal WorkerBase(ThreadPool pool, PersistentThread thread)
 {
     this.thread = thread;
     this.pool   = pool;
 }
示例#2
0
 internal Worker(ThreadPool pool, PersistentThread thread, Action <TContext> task) : base(pool, thread)
 {
     this.task = task;
 }