Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a thread that blocks on a UDP packet, and I need to be able to tell it to forget about that packet and do something else, all before the receive timeout happens. Is there any way to do this?

share|improve this question

3 Answers

up vote 3 down vote accepted

Use a DatagramChannel to read your UDP packets, and interrupt the reading thread. As per the documentation of Thread.interrupt (and DatagramChannel), the read operation will then throw a ClosedByInterruptException.

share|improve this answer
You might want to set the DatagramChannel to blocking-mode, so that it behaves more like a DatagramSocket. In non-blocking mode the DatagramChannel.receive() might just return null immediately, which will be confusing if you have never used non-blocking IO before. The javadoc of DatagramChannel will tell the same of course, but sometimes you stumble over this anyway – Boris Feb 27 '11 at 17:36

JB has posted one part of the solution. But if in case you are not using NIO channels, the solution AFAIK here would be to close the socket in consideration and handle it likewise in your runnable/callable. I did something similar a while back with TCP sockets, in case if you are interested. The feasibility of the solution again depends on whether closing the socket would be acceptable in your case or not. In that case, going with the NIO solution would make much more sense.

share|improve this answer

Set a much shorter read timeout and have your read method loop the correct number of times before it considers a read timeout to have happened. In the other (n-1) cases have it check Thread.isInterrupted().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.