Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sure this is a trivial question. What appens if I start a service, using the following code:

 startService(new Intent(this,myService.class));

and then I accidentally recall the above code, while the service is yet running?

I'm afraid that that the second call to startservice can create a new service in order to have two different process executing at same time.

share|improve this question
1  
There can only be 1 instance of a service, so you don't have to worry about multiple calls. – jsmith Oct 29 '12 at 15:00
Ok, thank you. I was not sure of this. – Joseph82 Oct 29 '12 at 15:06

1 Answer

up vote 1 down vote accepted

I'm afraid that that the second call to startservice can create a new service in order to have two different process executing at same time.

No, on multiple counts:

  • No, it will not create a new service. If the service is already running, it will be called with onStartCommand() again, to deliver the new Intent, but a second copy is not created.

  • No, it will not "have two different process executing at same time", because a service runs in the same process as the rest of your app, by default.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.