I am working in GWT in the project. I have a requirement in my project where I need an automatic refresh of my screen every 5 minutes.
Can somebody please help me?
public class TimerExample implements EntryPoint, ClickListener { public void onModuleLoad() { Button b = new Button("Click and wait 5 minutes"); b.addClickListener(this); RootPanel.get().add(b); } public void onClick(Widget sender) { Timer t = new Timer() { public void run() { reloadAll(); } }; // Schedule the timer to run once in 5 minutes. t.schedule(5*1000*60); } private void reloadAll() { Window.Location.reload(); } }
2.1m questions
2.1m answers
60 comments
57.0k users