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

I just want to implement the following in Java , Do anyone have some idea..?

public String method1(){

   //statement1
    .
    .
    .

   //statement 5
}

I want to set a timer for the statemen1 ( which involves some network communication ) . If the statement1 is not getting finished even after 25seconds , the control should go to statement 5 . how can I implement this in java ..?

share|improve this question
1  
What kind of network communication are you doing. Most java network classes allow you to set a timeout, so it will do it for you automatically. – jjnguy Sep 1 '10 at 13:42

6 Answers

You can make use of the java.util.TimerTask.

extend TimerTask and over-ride the run() method.

What you put in the run method is what should be executed every 25 seconds.

To start the timer do the following:

Timer tmer = new Timer("Network Timer",false);

ExtendedTimerTask extdTT = new ExtendedTimerTask(<params_go_here>) tmer.schedule(extdTT,25000,25000);

You can parse the object which does the networking part at <params_go_here> and assign to a local variable in your ExtendedTimerTask.

When the timer executes you can do the necassary calls on your <params_go_here> object to see if its finished.

Please note that the checker will run in a seperate thread as java.util.TimerTask implements java.util.Runnable

Cool

share|improve this answer
The reason I am using the TimerTask is because it is very similar in behaviour in comparison with a .Net Timer. – Koekiebox Sep 1 '10 at 14:03

You could do something like this:

private volatile Object resultFromNetworkConnection;    

public String method1(){
   resultFromNetworkConnection = null;
   new Thread(){
       public void run(){
           //statement1
           .
           .
           .
           // assign to result if the connection succeeds
       }
   }.start();
   long start = System.currentMilis();
   while (System.currentMilis() - start < 25 * 1000) {
       if (resultFromNetworkConnection != null) break;
       Thread.sleep(100);
   }
   // If result is not null, you can use it, otherwise, you can ignore it
   //statement 5
}
share|improve this answer
I suppose you would want to make resultFromNetworkConnection volatile as well. – aioobe Sep 1 '10 at 14:01
@aioobe, well, if you end up doing it this way, yeah. – jjnguy Sep 1 '10 at 14:05
@aioobe, You may like the updated version better. You don't have to wait 25 seconds no matter what! – jjnguy Sep 1 '10 at 14:08
no, the two threads may still cache their own versions of resultFromNetworkConnection. You need to put volatile in front of Object resultFrom... (or introduce some other synchronization mechanism). – aioobe Sep 1 '10 at 14:35
@aioobe, ok, I see your point. You cannot make a local volatile though, so it has to be a member. – jjnguy Sep 1 '10 at 14:37

If there is no time-out parameter for the blocking method at statement1, you would have to put statement1 in a separate thread, then wait(25000) for it to finish, if the wait times-out, you go ahead with statement 5 and ignore the result of the blocking call.

share|improve this answer

I/O operations (including network communication) are synchronous. So you can configure a timeout for the particular network communication, and you will have the desired behaviour. How exactly to configure the timeout - depends on what you are using.

share|improve this answer
"you can configure a timeout", well this depends on what API he's using I suppose. – aioobe Sep 1 '10 at 13:45
that's exactly what I said ;) – Bozho Sep 1 '10 at 13:50
I'm saying, whether or not you can configure the time-out at all depends on the API, right? – aioobe Sep 1 '10 at 14:00
@aioobe, yeah, some libraries may not offer a timeout property. – jjnguy Sep 1 '10 at 14:01
well, yes. But most do. – Bozho Sep 1 '10 at 14:34

You mention network communication, so I'll give a rough example with an InputStream from a Socket with a timeout set that may apply to other classes. While you could make timer threads, this is simpler.

socket.setSoTimeout(25 * 1000);

try
{
    data = readMyData(socket.getInputStream());
    doStuff(data);
}
catch(SocketTimeoutException e){ }

doStatement5();
share|improve this answer

Here's is a pattern that you can use. The idea is to start a separate thread to do the network stuff. The "main" thread will wait for the adequate time and check a shared variable that indicates if the networking stuff did his job on time.

public class TestConstrainNetworkOP {

    private Object lock = new Object();
    private Object dataAvailable;

    private Object constrainedNetworkOp() throws InterruptedException {

        Thread t = new Thread(new DoTask());
        t.start();
        Thread.sleep(25000);
        synchronized (lock) {
            if (dataAvailable != null) {
                //the data arrived on time
            }
            else{
                //data is not available and 
                            //maybe throw a timeoutexception
            }
        }
    }

    public class DoTask implements Runnable {

        @Override
        public void run() {
            // do the networking
            synchronized (lock) {
                // save your data here
                dataAvailable = new Long(1);
            }
        }

    }

}

This is a useful pattern if you don't too much control over the network layer (e.g. RMI, EJB). If you are writing the network communication by yourself, then you can set the timeout direct to the socket (as people previously said) or use Java NIO

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.