vote up 0 vote down star

    ActionListener taskPerformer = new ActionListener() {
    	public void actionPerformed(ActionEvent evt) {
    	    //...Perform a task...

    	    logger.finest("Reading SMTP Info.");
    	}
        };
    Timer timer = new Timer( 100 , taskPerformer);
    timer.setRepeats(false);
    timer.start();

According to the documentation this timer should fire once but it never fires. I need it to fire once.

flag

62% accept rate

4 Answers

vote up 3 vote down

This simple program works for me:

import java.awt.event.*;
import javax.swing.*;

public class Test {

    public static void main(String [] args) throws Exception{

        ActionListener taskPerformer = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                //...Perform a task...

                System.out.println("Reading SMTP Info.");
            }
            };
        Timer timer = new Timer( 100 , taskPerformer);
        timer.setRepeats(false);
        timer.start();

        Thread.sleep(5000);
    }
}
link|flag
True. I never tried Timer without a GUI. – kd304 Jun 17 at 12:22
Thanks, i found my problem logger is initialized after this code is run that's why i never saw my test messages. switching logger with println helped. – Hamza Yerlikaya Jun 17 at 12:24
IIRC, you shouldn't use javax.swing.Timer off the EDT. – Tom Hawtin - tackline Jun 17 at 13:14
vote up 0 vote down

That looks correct to me. Did you check your logging.properties to make sure logging is enabled for that class?

link|flag
Or the log is not letting through the FINEST level. – kd304 Jun 17 at 12:25
vote up 0 vote down

Your task likely only needs to report results on the event thread (EDT) but do the actual work in a background thread at some periodic rate.

ScheduledExecutorService is EXACTLY what you want. Just remember to update the state of your UI on the EDT via SwingUtility.invokeLater(...)

link|flag
vote up 0 vote down

I'm guessing from the log statement that you're doing some sort of SMTP operation. I think I'm right in saying the java.swing.Timer is intended for UI related timed operations, hence why it needs and EDT running. For more general operations you should use java.util.Timer.

This article is linked from the JavaDocs - http://java.sun.com/products/jfc/tsc/articles/timer/

link|flag

Your Answer

Get an OpenID
or

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