I use IntentService
to access various web service methods and update my ContentProvider
. The problem that I see is that sometimes I send a new Intent to the IntentService, but onHandleIntent()
IntentService
not called. And after a while, playing with the application and clicking on things to start other intentions, the onHandleIntent()
method is onHandleIntent()
and all Intents
queues are started.
Has anyone else encountered this problem? It seems that the IntentService
stuck at some point. I know that it is asynchronous, but I still expect it to work in a timely manner. Any thoughts?
source share