Re: Threads



You should look into the issue of threading pools. In general, it is bad design to just spawn threads, you easily loose control. A threading pool encapsulate this and allows you to tinker with thread count etc.

http://www.javaworld.com/javaworld/jw-05-1999/jw-05-toolbox-p2.html

/Casper
.