I have two intentservices
: IntentServiceA
and IntentServiceB
.
While IntentServiceA
is running and if I call startService(IntentServiceB)
, will IntentServiceB
run concurrently with IntentServiceA
or does it wait till IntentServiceA
stops?
If it was about Asynctasks
it would be: AsyncktaskB
won't start till AsynctaskA
is finished. But I could not find any documentation for this scenario in case of IntentService
.