Results 1 to 1 of 1
- 08-01-2011, 05:11 PM #1
Member
- Join Date
- Jun 2011
- Posts
- 8
- Rep Power
- 0
Problem Using ScheduledThreadPoolExecutor
I'm coding a program which calls a servlet, gets Strings in return, and posts the Strings into an EditText.
The code works fine without using the ScheduledThreadPoolExecutor , but when I use it, debugging the servlet shows the request has arrived, and it returns a answer, yet the Android application never posts the String into the EditText.
I want the program to call the servlet every 1 second.
At the moment where the program needs to start polling, this code is activated:
Class data member :
private ScheduledThreadPoolExecutor timer = new ScheduledThreadPoolExecutor(1);
Code in class :
timer.scheduleAtFixedRate(new Runnable() {
public void run() {
try {
String[] recentEvents;
recentEvents = getAllEvents(); // Gets the strings from the servlet
if (recentEvents != null)
activateEvents(recentEvents); // Prints them to the EditText
} catch (IOException e) {
e.printStackTrace();
}
}
}, 100, 1000,TimeUnit.MILLISECONDS);


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks