Service :
- The Service can be used in tasks with no UI, but shouldn't be too long. If you need to perform long tasks, you must use threads within Service.
- The Service is triggered by calling method
startService()
. - The Service runs in background but it runs on the Main Thread of the application.
- The Service may block the Main Thread of the application.
- If you implement a Service, it is your responsibility to stop the service when its work is done, by calling
stopSelf()
orstopService()
. (If you only want to provide binding, you don't need to implement this method).
- The IntentService can be used in long tasks usually with no communication to Main Thread. If communication is required, can use Main Thread handler or broadcast intents. Another case of use is when callbacks are needed (Intent triggered tasks).
- The IntentService is triggered using an Intent, it spawns a new worker thread and the method
onHandleIntent()
is called on this thread. - The Service and IntentService may be triggered from any thread, activity or other application component
- The IntentService runs on a separate worker thread.
- The IntentService cannot run tasks in parallel. Hence all the consecutive intents will go into the message queue for the worker thread and will execute sequentially.
- The IntentService stops the service after all start requests have been handled, so you never have to call
stopSelf()
.
Comments
Post a Comment
Thanks for your Comment