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");
    }
link|improve this question

75% accept rate
First, you did not ask a question here. Second, support for WakefulIntentService, as is indicated on the project's home page, is via the cw-android Google Group – CommonsWare Jun 21 '11 at 0:39
feedback

1 Answer

I don't think you can pass a Location object in the way you are trying. I would use putExtra to pass the individual values you need such as the latitude and longitude, timestamp etc... Use putExtra to pass your basic values likes strings, floats, ints, booleans etc...

link|improve this answer
Yes, it can be done: you can pass it as an object and it does work fine. – Ullfoll Jun 20 '11 at 23: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.