Tuesday, January 3, 2012

running flux

Hi all.

I'd like to know if is possible to have a situation like this:

// code here

Timer timer = new Timer(){
public void run(){
System.out.println("some action here");

};

};

timer.schedule(2000);

// code here
System.out.println("action to be executed AFTER timer call");

The output that i want is:

"some action here"
"action to be executed AFTER timer call"

The output that i have:

"action to be executed AFTER timer call"
"some action here"

Thanks!

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment