How do I do timers in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T05:47:32Zhttp://stackoverflow.com/feeds/question/771189http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/771189/how-do-i-do-timers-in-java0How do I do timers in Java?Anu2009-04-21T05:49:09Z2009-04-21T14:00:21Z
<p>I'm implementing the <a href="http://en.wikipedia.org/wiki/XMODEM" rel="nofollow">x-modem protocol</a> in Java. If there is a timeout while I'm receiving a packet then I have to send <a href="http://en.wikipedia.org/wiki/NAK" rel="nofollow">negative acknowledgment</a>. I have to start a timer, and when the time is up then I send a message to the sender requesting file transfer from the begining.</p>
<p>But I'm not getting how to do timers in Java; may I see some sample code? Thank you.</p>
http://stackoverflow.com/questions/771189/how-do-i-do-timers-in-java/771245#7712451Answer by boutta for How do I do timers in Java?boutta2009-04-21T06:17:23Z2009-04-21T06:17:23Z<p>Here some sample code from what I understood your question:</p>
<pre><code>final Timer t = new Timer();
t.schedule(new TimerTask() {
/**
* {@inheritDoc}
*/
@Override
public void run() {
// Do what you want
}
}, delay);
if (gotResponse) t.cancel();
</code></pre>
<p>Where <code>delay</code> is the amount of milliseconds you want to wait before the Timer executes it's task.</p>
http://stackoverflow.com/questions/771189/how-do-i-do-timers-in-java/771982#7719821Answer by A_M for How do I do timers in Java?A_M2009-04-21T10:34:25Z2009-04-21T10:34:25Z<p>Check out the java.util.concurrent package, specifically the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html" rel="nofollow" title="java.util.concurrent.ScheduledThreadPoolExecutor">ScheduledThreadPoolExecutor</a> class.</p>
<p>The problem with java.util.Timer is that it schedules one background thread to handle the timed tasks, and your tasks can queue up if the task itself takes a while to run (see <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Timer.html" rel="nofollow" title="java.util.Timer">here</a> for details)</p>
<p>None of these give any real time guarantees.</p>
<p>This <a href="http://rads.stackoverflow.com/amzn/click/0321349601" rel="nofollow">book</a> is really good at explaining the usage of the java.util.concurrent package</p>