I've been working on a network app for a while now that uses a class, connectionManager, which runs as a
thread and processes inbound and outbound DatagramPackets. It's been behaving progressively more oddly on me the last few days, it's to the point that it's driving me nuts.
On a theoretical level, I know that if I have a class that "extends Thread", whose constructor creates a socket and whose run() method is a while(true) loop, that that class should be able to process all inbound and outbound packets on that socket. Thankfully, outbound packets work just great.
But when I instantiate an object of this class, and then call obj.start(), I'm not receiving anything on this socket (or at least the run() method isn't doing anything with the data that might come in).
Confusing me further are the facts that a) I didn't change anything from the time this worked to now, at least that's related to inbound data packets; and b) if I call obj.run() directly, the program receives data just fine.
To see the files in question, go to
www.schnarff.com/gnutonic/runGnutonic.java (the calling, main file) and
www.schnarff.com/gnutonic/connectionManager.java (the thread implementation). If you want to try running the program, grab
www.schnarff.com/gnutonic/gnutonic-0.1.1.tgz and follow the instructions in the README file.
Thanks for your help.
Alex Kirk