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 the following block of code:

public void startListening() throws Exception {
    serverSocket = new DatagramSocket(port);
    new Thread() {

        @Override
        public void run() {
            System.out.print("Started Listening");
            byte[] receiveData = new byte[1024];
            DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length);
            while (!stopFlag) {
                try {
                    serverSocket.receive(receivePacket);
                    String message = new String(receivePacket.getData());
                    System.out.println("RECEIVED: " + message);
                } catch (Exception ex) {
                    System.out.print("Execption :" + ex.getMessage());
                }
            }
        }
    }.start();
}


public void stopListening() {
    this.stopFlag = true;
}

Suppose I set stopFlag to true. serverSocket.receive(receivePacket); will wait until it receives a packet. What should I do if I want the thread to exit as soon as stopFlag is set to true.

share|improve this question

4 Answers

up vote 6 down vote accepted

I had the same problem with a socket as well and interrupt() didn't work. My problem was solved by closing the socket. So in the setStop() method (as proposed above) you would have to call serverSocket.close() (you'd obviously have to make serverSocket a class member or something).

share|improve this answer
I completely forgot that one :). I hope you take it as gratitude that I'll edit my answer for future readers. – Angelo Neuschitzer Apr 13 '12 at 7:24
@mistalee it worked... thanks – Akhil K Nambiar Apr 13 '12 at 7:27

It would help if you had some code which included the code where you plan to change the stopFlag. If it is outside of the thread you could probably use a .interrupt() on the thread followed by a .destroy() on the thread. It is not an ideal solution better probably to try and add a timeout on your server socket see setSoTimeout() method of DatagramSocket in the java api.

share|improve this answer
2  
the destroy is unnecessary and unrecommended. – Angelo Neuschitzer Apr 13 '12 at 7:18
Thanks for the input this highlights the fact that an interupt is not ideal as the destroy does not cleanup after the Thread better to let it end naturally by stopping the recieve hanging. – timash11 Apr 13 '12 at 7:20
1  
interrupt is perfect for this situation. It throws an Interrupted Exception at the place where the thread is currently waiting and can be cleaned up after that in the catch block – Angelo Neuschitzer Apr 13 '12 at 7:23
Makes sense to me thanks. – timash11 Apr 13 '12 at 7:26
1  
interrupt doesn't work because you've got catch (Exception ex) { ... } which ignores it. See ibm.com/developerworks/java/library/j-jtp05236/index.html – artbristol Apr 13 '12 at 7:29
show 5 more comments

I'm unsure where the stop flag comes from but anyway, the answer is interrupt.

Thread t;
ServerSoket serverSoket;

public void startListening() throws Exception {
    ...
    serverSocket = new DatagramSocket(port);
    t = new Thread()...;
    t.start();
    ...
}

setStop() {
    stopFlag = true;
    serverSocket.close()
    t.interrupt();
}
share|improve this answer
.interrupt() didn't work. – Akhil K Nambiar Apr 13 '12 at 7:25
1  
@AkhilKNambiar I added the part of mistalee below. Please try it again (and give him/her an upvote) – Angelo Neuschitzer Apr 13 '12 at 7:27

Use serverSocket.setSoTimeout(t).

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.