Ejemplo n.º 1
0
 public ThreadPoolFiber(FiberPool fp, int fiberidSeed)
 {
     AttachFiberPool(fp);
     this.fiberid = Math.Abs(fiberidSeed) % fp.GetWorkerCount;
 }
Ejemplo n.º 2
0
 internal void AttachFiberPool(FiberPool fp)
 {
     this.fp = fp;
 }