On Sat, Mar 24, 2012 at 8:45 AM, Put_tiMe <[email protected]> wrote: > Will they be invoked one after the other, in the order they were raised.
Yes. > Is there any chance that 'onHandleIntent' will be called in parallel, to > handle more than one intent simultaneously. No. IntentService only has one background thread. Creating a ThreadPoolIntentService that supports multiple parallel threads is one of the 18,000 items on my to-do list... :-) -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

