If a Service is created as a subclass of IntentService base class which of the following statement is accurate?
- Service runs in the context of the main thread of the application owning the Service
- Service runs as a worker thread in the application owning the application
- Service runs in the context of the invoking application
Please help!
I am assuming none of these option are correct as IntentService is not a standalone class by itself and requires Service base class!?.. Not sure if my assumption is correct.