Forums Register Login

How to interrupt a thread waiting for client connection? (URGENT)

+Pie Number of slices to send: Send
Hi,
The main thread of server sets the status to IDLE and then it starts another thread (child thread). Now the main thread is waiting for client connection (by calling Socket.accept()method ).
In the mean time, the child thread sets the server status to STOPPING due to the request it received.
Now the server main thread should not continue waiting for the client connection if the status had been set to STOPPING.
Is there any way to make the server thread to come out of the blocking state (i.e, it blocks until it accepts a connection and it should come out of it).
Is there any way for the server thread to check for the status while it is blocking for a client connection?
Thanks in advance...
+Pie Number of slices to send: Send
Use ServerSocket.setSoTimeout to either periodically drop out of accept() to check your flag, or to simply set the maximum amount of time you're prepared to wait.
Alternatively, a separate thread can close() the ServerSocket. This is not documented but appears to be widely used. Of course the socket is unusable after close()ing it.
Finally, if you can afford to be bleeding edge look at JDK 1.4 java.nio.*. The new I/O packages feature non-blocking I/O.
- Peter
+Pie Number of slices to send: Send
Thanks Peter
I am Arthur, King of the Britons. And this is a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 1357 times.
Similar Threads
NX: URLy Bird 1.3.1 Explicit Fatal Exception Handling
ServerSocket crash with Thread
How to interrupt a thread waiting for client connection? (URGENT)
Non-blocking sockets
Thread confusion
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 18, 2024 23:26:19.