im receiving an intent in broadcast receiver and then i start service to do more work. now what if the device is sleep and this happen, do i have to get Wakelock (AlarmManger?), and why do i need it? does my service will stop running if the device goes to sleep without getting a wakelock.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

now what if the device is sleep and this happen, do i have to get Wakelock (AlarmManger?), and why do i need it?

If the device is asleep to begin with, you will not be "receiving an intent in broadcast receiver", because the device is asleep.

do i have to get Wakelock (AlarmManger?), and why do i need it?

You don't "need it", unless you want to ensure the device stays running while you complete some work.

does my service will stop running if the device goes to sleep without getting a wakelock.

Yes.

link|improve this answer
for the first part, i meant i will receive an intent from C2DM which i guess you could receive it while the device is asleep. and then i want to run a service and i guess i have to get wakelock to keep it running. is these assumption are correct ? – Jimmy Apr 15 '11 at 19:15
@Fevos: "i meant i will receive an intent from C2DM which i guess you could receive it while the device is asleep." -- yes, C2DM uses a socket connection over wireless data (AFAIK), and incoming packets on that connection will wake up the device briefly. "and then i want to run a service and i guess i have to get wakelock to keep it running. is these assumption are correct ?" -- yes, you will want your own WakeLock. Just be sure to release it when you are done. – CommonsWare Apr 15 '11 at 19:20
Great ! thanks. – Jimmy Apr 15 '11 at 19:26
feedback

Your Answer

 
or
required, but never shown

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