Interrupt a thread in DatagramSocket.receive
Posted
by
SEK
on Stack Overflow
See other posts from Stack Overflow
or by SEK
Published on 2011-01-12T15:39:50Z
Indexed on
2011/01/12
15:54 UTC
Read the original article
Hit count: 210
I'm building an application that listens on both TCP and UDP, and I've run into some trouble with my shutdown mechanism. When I call Thread.interrupt() on each of the listening threads, the TCP thread is interrupted from listening, whereas the UDP listener isn't. To be specific, the TCP thread uses Socket.accept(), which simply returns (without actually connecting). Whereas the UDP thread uses DatagramSocket.receive, and doesn't exit that method.
Is this an issue in my JRE, my OS, or should I just switch to (Datagram)Socket.close()?
© Stack Overflow or respective owner