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 IntentService, and you send it another request, the request waits until the first operation is finished.
I dont understand if this implies to different calls to the SAME IntentService, or even to different IntentServices.
Help will be appreciated.