Menu
  • HOME
  • TAGS

Queuing tasks for a service

android,service,queuing

As Eran and pskink suggested, I implemented the IntentService which was exactly what I needed to queue the requests. As the documentation says : The IntentService does the following: Creates a work queue that passes one intent at a time to your onHandleIntent() implementation, so you never have to worry...