多个Android IntentServices可以同时运行吗?

时间:2014-09-16 22:49:49

标签: android android-intent service android-intentservice

根据我的理解,IntentService一次只能处理一个Intent,因为它共享一个工作线程来完成所有工作。但是如果我的应用程序中有多个IntentService,它们可以并行运行,还是它们共享单个工作线程?

1 个答案:

答案 0 :(得分:5)

  

但如果我的应用程序中有多个IntentServices,它们可以并行运行吗

如果您的意思是您有多个IntentService的子类,那么它们应该能够并行运行。