android - Multiple IntentServices running in parallel -
i have intent service in android app scheduled start every 1 minute. let me call intent service intentservicea.class
now want use intentservice (intentserviceb.class) specific tasks.
my question is:
does intentserviceb goes in same thread of intentservicea? goes in queue? or perform separately?
if goes in same thread, alternative?
thank help.
intentservicea , intentserviceb create separate threads. in other words intents sent intentservicea processed sequentially in 1 thread , intents sent intentserviceb processed sequentially in thread.
Comments
Post a Comment