Reputation: 1294
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...
Upvotes: 0
Views: 144
Reputation: 994
You could also try the Scheduler from GWT but the GWT Timer seems still more appropriate.
Scheduler.get().scheduleFixedDelay(yourCommand, msToWait);
Upvotes: 0