Futures

This lesson gets into the details of working with threading.Future ( not to be confused with asycncio.Future).

We'll cover the following...

Futures

You can think of Future as an entity that represents a deferred computation that may or may not have been completed. It is an object that represents the outcome of a computation to be completed in future. We can query about the status of the deferred computation using the methods exposed by the Future ...