I have a question regarding IntentService
Let's say I have two intent service classes that do separate tasks unrelated to each other.
public class TaskA extends IntentService{
@Override
protected void onHandleIntent(Intent workIntent) {}
}
And the second
public class TaskB extends IntentService{
@Override
protected void onHandleIntent(Intent workIntent) {}
}
If I start TaskA first and then next line start TaskB, would TaskB have to wait for TaskA to finish?
I am aware that if I start the same intent service again, it is added to a queue but does this apply to an instance or is a global to the whole application?