Skip to content Skip to sidebar Skip to footer

Can Different Intentservices Run In Parallel?

Im having a little difficulty understanding one rule about IntentServices. From Creating a Background Service : Work requests run sequentially. If an operation is running in an In

Solution 1:

Let's say you start an IntentService, and it is performing a network request (immediately). You now request the IntentService to perform another task. This time, instead of immediately performing the network call, it will wait for the previous request to finish if it didn't. This applies for the SAME IntentService.

If you create another IntentService it will perform the first request immediately, but not subsequent requests.

Post a Comment for "Can Different Intentservices Run In Parallel?"