0

I am using GWT + MVP4G, In my application I want to make my application to wait for specific amount of time from mvp4g view. I tried Timer but it doesn't work. please suggest me some solution if anyone knows.....thanks in advance...

4

1 に答える 1

0

You could also try the Scheduler from GWT but the GWT Timer seems still more appropriate.

Scheduler.get().scheduleFixedDelay(yourCommand, msToWait);
于 2012-07-03T14:29:12.747 に答える