- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Why does ForkJoinScheduler shut itself down when no actors?
Mon, 2011-07-25, 07:54
in ForkJoinScheduler#run:
if (allActorsTerminated) {
Debug.info(this+": all actors terminated")
terminating = true
throw new QuitControl
}
What is the reason to terminate the scheduler?
How can I keep it alive? (I use it for one-shot actors)
Ittay