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