Skip to content Skip to sidebar Skip to footer

Intentservice Not Getting Called Sometimes

I'm using an IntentService to access different web service methods and update my ContentProvider. The issue I'm seeing is that, sometimes, I send a new Intent to the IntentService

Solution 1:

The problem was that a http request would take a long time and consequently, the other http requests would have to wait. IntentService uses only one thread at a time.


Post a Comment for "Intentservice Not Getting Called Sometimes"