Is it possible to restart Thread?
Hi All !!!
I have an app which uses threads. I have class that extends class Thread. This is server/client app so when two clients connect to server, server starts this thread. It does something and then ends. My problem is that when one of clients leave and then connect again server tryes to start thread and here I have IllegalThreadStateException
. It looks like this thread started before hasnt die yet but method isAlive() returns false.
Please help. Thanks.

