I am creating a thread in init(), and starting it in start().
In the user guide, there is written:
"void stop(): Inform the Thread to terminate the run(), close the
ServerSockets".
So in stop() I am interrupting my thread.
In the apidocs, there is written "the container may restart the Daemon by
calling start() after stop().". But, if my thread has finished, it cannot
be restarted again. (Thread.start() cannot be called after the thread has
completed execution).
So, what should I do?

Thanks.

Reply via email to