Does anyone know of a java version of the python deferred library? Or maybe an idea on how to implement one?
EDIT: App engine has http://code.google.com/appengine/articles/deferred.html, but that library is only for python. I’m looking for something similar, but that works with GAE/Java
There has been work on a Java version of deferred, but nothing released. Searching the archives of the google-appengine-java group may reveal some user code that implements this. Bear in mind that it’s not as neat as Python – you have to declare a serializable class that implements a particular interface, while in Python nearly any function or method will do fine.