PoolFiber executionFiber = new PoolFiber();
executionFiber.Stop();
executionFiber.Start();
disposeTimer = executionFiber.ScheduleOnInterval(() => Prepare(), 0, 1000);
If I put Stop before Start, the Prepare function would never execute. Why does that happen?
↧