How do I properly stop a running thread, now that Thread.stop() has been deprecated?
Thanks
Puru
-
interrupting a thread (2 messages)
- Posted by: Puru Kk
- Posted on: March 07 2003 17:15 EST
Threaded Messages (2)
- Hope not doing in J2EE by g gindele on March 17 2003 17:08 EST
- Hope not doing in J2EE by Puru Kk on April 02 2003 12:10 EST
-
Hope not doing in J2EE[ Go to top ]
- Posted by: g gindele
- Posted on: March 17 2003 17:08 EST
- in response to Puru Kk
Thread.Interrupt()
I hope you are not trying to stop the thread inside of a J2EE container. One excuse might be a thread that was created from the thread within the J2EE application, but that thread creation would still be against the J2EE rules. -
Hope not doing in J2EE[ Go to top ]
- Posted by: Puru Kk
- Posted on: April 02 2003 12:10 EST
- in response to g gindele
nope, I am creating threadpool outside of j2ee container