I have an intent service in my Android app that is scheduled to start every one minute. Let me call this intent service intentServiceA.class
Now I want to use another intentService (intentServiceB.class) for specific tasks.
My question is:
Does intentServiceB goes in the same thread of intentServiceA? Does it goes in the queue? or perform separately?
If it goes in the same thread, what is a good alternative?
Thank you for your help.