Android's AlarmManager Javadoc states

When an alarm goes off, the Intent that had been registered for it is broadcast by the system,

There is an AlarmService (package com.example.android.apis.app) in the API demos supplied with Android which demonstrate AlarmService in use.

In it we have the following (edited for clarity):

PendingIntent mAlarmSender = PendingIntent.getService(AlarmService.this,
            0, new Intent(AlarmService.this, AlarmService_Service.class), 0);
AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, firstTime, 30*1000, mAlarmSender);

So in this example it doesn't do a PendingIntent mAlarmSender = PendingIntent.getBroadcast(...); instead it does a getService which the Javadoc never alludes to.

The reason I am asking about this is because of the implications of the CPU wake lock. The Javadoc says that the AlarmManger's wake lock will be released once a Broadcast receiver's onReceive() returns.

What I am wondering is what are the wake lock implications if you use an Alarm like in the example? The Javadoc doesn't seem to address this. If anything it seems to imply that you must use the broadcast technique when setting alarms.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

What I am wondering is what are the wake lock implications if you use an Alarm like in the example?

There are no guarantees that your service will get control before the device falls asleep.

If anything it seems to imply that you must use the broadcast technique when setting alarms.

For _WAKEUP alarms, yes, as that is the only path in which we are guaranteed to get control while the device is still awake.

Since the work to be done by the _WAKEUP alarm is typically beyond the scope of what you can safely do in onReceive() of a manifest-registered BroadcastReceiver, a common pattern is to delegate the work to an IntentService. To that end, I have packaged up WakefulIntentService, to implement the pattern for safely passing control to an IntentService and keeping the device awake long enough for the service to do its work.

link|improve this answer
perfect answer - great attachment. Many thanks – Tim Nov 16 '11 at 14:46
also.. what is the best way to cancel a WakefulIntentService? – Tim Nov 16 '11 at 15:36
@Tim: I'm not sure what you mean by "cancel a WakefulIntentService". You can cancel the alarm via cancel() on AlarmManager. – CommonsWare Nov 16 '11 at 16:51
agh!! of course..thank you – Tim Nov 17 '11 at 10:47
1  
@Tim: "To cancel() you need the same PendingIntent that started it which I don't have access to." -- no, you need an equivalent PendingIntent, meaning a PendingIntent created using an equivalent Intent, where "equivalent" means "same component, action, Uri, categories, and MIME type". Re: small omission, yes, I forgot to mention that requirement if you're using the new AlarmReceiver. It also pointed out some places where the markdown wasn't being converted properly in that README. Thanks! – CommonsWare Nov 18 '11 at 11:54
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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