I've put some code at github <https://github.com/kaste/waterf> today. I had
this as a working version in a project, and just tend to find it useful. It
is way below the 'official' pipeline-API which is actually pretty messy and
confusing to use.
from waterf import queue, task
queue.inorder(
task(check_condition),
queue.parallel(
task(remove, id=101),
task(remove, id=102),
task(remove, id=103)
),
task(email, to='[email protected]')
).run()
That's it for now;
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.