milind_db
milind_db

Reputation: 1294

how can I make my application to wait for specific time from mvp4g view?

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

Answers (1)

Till
Till

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

Related Questions