What Actually happens when startService is called

2019-06-25 14:59发布

问题:

Im calling startService() multiple times with different intents for same service. It is clear that only one instance of service exists anytime and startCommand() is called for every startService(). My questions are: 1. is there any performance effects in calling startService() multiple times? 2. Will the intents be handled serially in the order of calling ?

标签: service