| android Programming Glossary: scheduledthreadpoolexecutorScheduling recurring task in Android http://stackoverflow.com/questions/14376470/scheduling-recurring-task-in-android  to schedule a server call the options I saw were Timer . ScheduledThreadPoolExecutor . Service . BroadcastReciever with AlarmManager . what's your..  60000 60000 Timer has some drawbacks that are solved by ScheduledThreadPoolExecutor . So it's not the best choice ScheduledThreadPoolExecutor ... ScheduledThreadPoolExecutor . So it's not the best choice ScheduledThreadPoolExecutor . You can use java.util.Timer or ScheduledThreadPoolExecutor.. 
 How to limit framerate when using Android's GLSurfaceView.RENDERMODE_CONTINUOUSLY? http://stackoverflow.com/questions/4772693/how-to-limit-framerate-when-using-androids-glsurfaceview-rendermode-continuousl  I could switch to RENDERMODE_WHEN_DIRTY and use a Timer or ScheduledThreadPoolExecutor to requestRender . But that adds a whole mess of extra moving.. 
 Where do I create and use ScheduledThreadPoolExecutor, TimerTask, or Handler? http://stackoverflow.com/questions/8098806/where-do-i-create-and-use-scheduledthreadpoolexecutor-timertask-or-handler  do I create and use ScheduledThreadPoolExecutor TimerTask or Handler  I need to make my RSS Feed reader check.. sources. My current understanding is that I can use ScheduledThreadPoolExecutor to make two scheduled threads and one of them needs a Handler.. timertask   share improve this question   I prefer to use ScheduledThreadPoolExecutor. Generally if I understand your requirements correctly all these.. 
 Scheduling recurring task in Android http://stackoverflow.com/questions/14376470/scheduling-recurring-task-in-android  know what is the best way of doing this. What is the best way to schedule a server call the options I saw were Timer . ScheduledThreadPoolExecutor . Service . BroadcastReciever with AlarmManager . what's your opinion EDIT the reason I need this is for a chat based app.. new TimerTask synchronized public void run  here your todo  60000 60000 Timer has some drawbacks that are solved by ScheduledThreadPoolExecutor . So it's not the best choice ScheduledThreadPoolExecutor . You can use java.util.Timer or ScheduledThreadPoolExecutor preferred..  60000 60000 Timer has some drawbacks that are solved by ScheduledThreadPoolExecutor . So it's not the best choice ScheduledThreadPoolExecutor . You can use java.util.Timer or ScheduledThreadPoolExecutor preferred to schedule an action to occur at regular intervals.. 
 How to limit framerate when using Android's GLSurfaceView.RENDERMODE_CONTINUOUSLY? http://stackoverflow.com/questions/4772693/how-to-limit-framerate-when-using-androids-glsurfaceview-rendermode-continuousl  battery. I'd like to limit the frame rate to 30 fps. I could switch to RENDERMODE_WHEN_DIRTY and use a Timer or ScheduledThreadPoolExecutor to requestRender . But that adds a whole mess of extra moving parts that might or might not work consistently and correctly... 
 Where do I create and use ScheduledThreadPoolExecutor, TimerTask, or Handler? http://stackoverflow.com/questions/8098806/where-do-i-create-and-use-scheduledthreadpoolexecutor-timertask-or-handler  do I create and use ScheduledThreadPoolExecutor TimerTask or Handler  I need to make my RSS Feed reader check the feed every 10 minutes for new posts and then parse them.. every minute. I have read and heard different things from various sources. My current understanding is that I can use ScheduledThreadPoolExecutor to make two scheduled threads and one of them needs a Handler for updating the UI. I am unsure about what the most efficient.. where would I implement these  android handler threadpool timertask   share improve this question   I prefer to use ScheduledThreadPoolExecutor. Generally if I understand your requirements correctly all these can be implemented in your activity TimerTask and Handler.. 
 |