task timer gwt smart - temporizador en gwt smartclient
TASK - refrscar.txt
task timer gwt smart
Timer t = new Timer() {
public void run() {
statusGrid.invalidateCache();
statusGrid.fetchData();
Window.alert("james jara, who is");
}
};
// Schedule the timer to run once in 5 seconds.
t.scheduleRepeating(5000);
temporizador en gwt smartclient
task timer gwt smart
Timer t = new Timer() {
public void run() {
statusGrid.invalidateCache();
statusGrid.fetchData();
Window.alert("james jara, who is");
}
};
// Schedule the timer to run once in 5 seconds.
t.scheduleRepeating(5000);
temporizador en gwt smartclient
Comments
Post a Comment