Example #1
0
 public void Recycle(ThreadInfo info)
 {
     threadPool.Recycle(info);
 }
Example #2
0
        public ThreadInfo Allocate()
        {
            ThreadInfo threadInfo = threadPool.Allocate();

            return(threadInfo);
        }