A
Future
represents the result of an
asynchronous operation
.
When created, it probably doesn't have any result data.
When the operation finishes, the
Future
gets the result.
An application can call a
Future
object's
get_result()
method; if the result has arrived, the
method returns it; otherwise, it waits for the result to arrive and
then
returns it.
- Instance Methods