Re: [appengine-java] Using class objects as keys in tasks for TaskQueue

2009-11-15 Thread Vince Bonfanti
You can pass an object to a task by first serializing it to a byte array, setting the byte array as the task payload, and then deserializing it when your task runs. The following code demonstrates how to do this:

[appengine-java] Using class objects as keys in tasks for TaskQueue

2009-11-13 Thread edarroyo
Hello, We are trying to set an object as a parameter for a task. It seems the only values you can pass are strings, as we always get Eclipse complaining that the funciont param() does not handle non- string objects. What we are doing is the following: