I\'m putting several tasks into a task queue and would like to know when the specific tasks are done. I haven\'t found anything in the API about call backs, or checking the stat
The new REST/JSON task queue API will let you do this.
http://code.google.com/appengine/docs/python/taskqueue/rest.html
This does not scale well to thousands of tasks...
I do like the pipeline API suggestion though!