In the docs, a FutureWrapper is defined like this:
FutureWrapper is a simple Future that
wraps a parent Future.
What’s a Future, why would you need to wrap it and when would you use it in App Engine?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s the
java.util.concurrent.Future<V>. The linked Javadoc is pretty clear and contains an example. For the lazy, here’s a copypaste:The
FutureWrapperis just a decorator for any parentFuture.