java - Delays between Iterations of a for-loop in GWT -


i'am strugeling making delays in gwt (client-side).

what want have break of few seconds between iterations of for-loop. first iteration should start instantly, there has pause between following ones.

anyone idea?

you can delay using timer.

try this:

timer timer = new timer() {      public void run {          // whatever code want repeat     }  };  for(int i=0; i<10; i++) {     timer.schedule(100) //100 millisecond delay } 

Comments