I need to have a thread which checks for network connection availability on a JAVA desktop app. I got a thread like this

    class DataSyncThread extends Thread {
     DataSyncThread() {
     }

     public void run() {
         while(true){
            try{
                System.out.println("Checking for network");
                InetAddress addr = InetAddress.getByName(host);
                if(addr.isReachable(MIN_PRIORITY)){
                    syncData();
                }
                this.sleep(1000000);
            }catch(Exception e){}
         }
     }
 }

Now when I call this in the constructer the app never loads. when I look into the console (I trigger the jar to load from it) the thread work, it prints "Checking for network" in the console.

help appreciated

link|improve this question

80% accept rate
4  
Your calling code would be helpful here. Also consider a different title for this question. – Neil Essy Nov 28 '11 at 6:00
feedback

1 Answer

up vote 7 down vote accepted

My guess is that you're doing something like:

DataSyncThread thread = new DataSyncThread();
thread.run();

That will run the run() method synchronously. You should be calling start() to create a separate thread of execution:

DataSyncThread thread = new DataSyncThread();
thread.start();

I would also recommend implementing Runnable instead of extending Thread - or quite possibly using a Timer instead, given that you want periodic execution. I hope your real code has logging in your catch block, too...

link|improve this answer
why implement runnable rather than extending from thread ? – nivanka Nov 28 '11 at 6:03
@nivanka: Separation of concerns: you're just trying to give the thread something to run, not change any other aspects of the threading behaviour. Favouring composition over inheritance generally leads to cleaner code. – Jon Skeet Nov 28 '11 at 6:05
feedback

Your Answer

 
or
required, but never shown

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