Thread.destroy() has never been implemented in any JVM from Sun, except perhaps the Green Threads ones -- it's been a while so my memory fails me here.
In any case, use stop(), if you must, but use it only as an absolute last resort. Use interrupt() if you can, along with
testing the interrupted property in your thread loop.
[ November 13, 2005: Message edited by: Ernest Friedman-Hill ]