I am trying to implement a WakefulIntentService using the CommonsWare example. I need to pass a Location to the subclass of the WakefulIntentService, but I haven't been able to do that.
I call sendWakefulWork using:
Intent i = new Intent(context, WakefulIntentService.class);
i.putExtra(Constants.LOCATION, location);
WakefulIntentService.sendWakefulWork(context, i);
On WakefulIntentService class I have the following method:
public static void sendWakefulWork(Context context, Intent i) {
getLock(context).acquire();
i.setClass(context, ProtocolController.class);
context.startService(i);
}
And finally, ProtocolController class:
public class ProtocolController extends WakefulIntentService {
public ProtocolController() {
super(ProtocolController.class.getSimpleName());
Log.d(Constants.TAG, "starting Protocol");
}
@Override
public void onCreate(){
super.onCreate();
}
@Override
protected void doWakefulWork(Intent intent) {
Log.d(Constants.TAG, "Doing wakeful work");
}
WakefulIntentService, as is indicated on the project's home page, is via the cw-android Google Group – CommonsWare Jun 21 '11 at 0:39