I Have questions about how Service
and IntentService
function. The points to ask about are below:
Does calling stopSelf()
manually in Service
(or IntentService
) guarantee the service to stop?
If stopSelf() is called manually somewhere in the Service, will the code following the call be executed?
// As I know, calling stopSelf() can stop code execution in case it throws an exception, else I can't find a logic for that.