I have a application where a thread is listening for TCP connections, and will need to be killed. What is the best way to do this? I know that Thread.stop is deprecated, is interrupting the thread enough?
|
If you have a reference to a Note that you probably don't want to expose a reference to the socket itself; you should probably add a method to your server code named |
|||
|
|
|
Generally - yes, you should use Thread.interrupt() and a shared variable. In your particular example, you can just close the Socket to cause the thread to return immediately. Read about it here. |
|||||||
|
|
You could set a "stop" variable that the thread checks after each connection. Then connect to the thread's port to wake it up. Another approach would be to set a timeout with a call to You could also call close() directly on the ServerSocket if possible as mentioned by Mark Peters. |
|||
|
|