gwt scheduler example

2010-12-30 Thread Ali
Hi there,
Can anyone please let me know where I can find a simple example of
using gwt class Scheduler.
for example using this scheduler to repeat a task every 5 seconds.
Talking about com.google.gwt.core.client.Scheduler.

Thank you.

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt scheduler example

2010-12-30 Thread Ali
thanks very much.

On Dec 30, 6:19 am, Nirmal Patel nirmaljpa...@gmail.com wrote:
 private final class MyRepeatedCommand implements RepeatingCommand {
     public void execute() {}

 }

 Scheduler.get().scheduleFixedPeriod(new MyRepeatedCommand(), delayMs)

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt scheduler example

2010-12-30 Thread Ali
Could you please also let me know how to stop it scheduler as well.
Thank you.

On Dec 30, 6:19 am, Nirmal Patel nirmaljpa...@gmail.com wrote:
 private final class MyRepeatedCommand implements RepeatingCommand {
     public void execute() {}

 }

 Scheduler.get().scheduleFixedPeriod(new MyRepeatedCommand(), delayMs)

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



gwt scheduler example

2010-12-29 Thread Ali
Hi there,
Where can I get a simple example of gwt Scheduler. Can any one write a
simple sheduler task running every 5 seconds for example.

thank you.

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt scheduler example

2010-12-29 Thread Y2i
GWT stock sample app has an example that uses
com.google.gwt.user.client.Timer:

http://code.google.com/webtoolkit/doc/latest/tutorial/codeclient.html#refreshPrice

Is this something that you are looking for?

On Dec 29, 1:44 pm, Ali ali.a.sa...@gmail.com wrote:
 Hi there,
 Where can I get a simple example of gwt Scheduler. Can any one write a
 simple sheduler task running every 5 seconds for example.

 thank you.

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt scheduler example

2010-12-29 Thread Nirmal Patel
The task to be scheduled:
   private final class MyScheduledCommand implements ScheduledCommand {
public void execute() {
 //Task to be scheduled
 ..
}
}
Usage:
  Scheduler.get().scheduleDeferred(new MyScheduledCommand());

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: gwt scheduler example

2010-12-29 Thread Nirmal Patel
private final class MyRepeatedCommand implements RepeatingCommand {
public void execute() {}
}

Scheduler.get().scheduleFixedPeriod(new MyRepeatedCommand(), delayMs)

-- 
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-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.