What are the practical differences between putting a service in a separate process or keeping it in the app’s main process? What would each scenario be used for?
What are the practical differences between putting a service in a separate process or
Share
When a service is running in the main process it will be stopped in case your application crashes for whatever reason. Put a service into it’s own process is reasonable for some services which can be used from different applications or services which should run independently from your main app.