Modifying a Swing Timer's Delay during Runtime - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T12:07:14Zhttp://stackoverflow.com/feeds/question/930798http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/930798/modifying-a-swing-timers-delay-during-runtime0Modifying a Swing Timer's Delay during RuntimeKindinos2009-05-30T22:41:41Z2009-05-30T23:07:44Z
<p>I'm developing a Queue simulation, using a Swing Timer to dequeue objects after certain amounts of time. The interval is determined by peeking at the next object in the queue, getting an integer from it, and setting the delay of its corresponding timer.</p>
<p>Here's the relevant snippet from the program (Note: <code>_SECONDS_PER_ITEM</code> is a constant defined elsewhere to <code>2000</code>):</p>
<pre><code>// stop the timer
qTimer[q].stop();
// peek at how many items the customer has, and set the delay.
qTimer[q].setDelay(customerQueue[q].peek().getItems()*_SECONDS_PER_ITEM);
// the next time around, this method will see the flag, and dequeue the customer.
working[q] = true;
// denote that the customer is active on the UI.
lblCustomer[q][0].setBorder(new LineBorder(Color.RED, 2));
// start the timer.
qTimer[q].start();
</code></pre>
<p>The problem I have is that every customer, no matter how many items they have, is processed in one second.</p>
<p>Is there some other method or technique I should be using to set the delay?</p>
http://stackoverflow.com/questions/930798/modifying-a-swing-timers-delay-during-runtime/930829#9308291Answer by Kindinos for Modifying a Swing Timer's Delay during RuntimeKindinos2009-05-30T23:07:44Z2009-05-30T23:07:44Z<p>It would seem that when <code>stop()</code>ing a Timer, the delay that is used to fire the next event is the initial delay. Thus, the correct method to use in the above example, is <code>setInitialDelay()</code>:</p>
<pre><code>{
// stop the timer
qTimer[q].stop();
// peek at how many items the customer has, and set the delay.
qTimer[q].setInitialDelay(customerQueue[q].peek().getItems()*_SECONDS_PER_ITEM);
// the next time around, this method will see the flag, and dequeue the customer.
working[q] = true;
// denote that the customer is active on the UI.
lblCustomer[q][0].setBorder(new LineBorder(Color.RED, 2));
// start the timer.
qTimer[q].start();
}
</code></pre>