7 min read

Python ThreadPoolExecutor - The Future Object

A Future represents a result that hasn't arrived yet. We explore how to query these objects to check if a task is running or done, and how to use the .result() method to retrieve the final value or error.
Python ThreadPoolExecutor - The Future Object
Reader: Python Futures

Reader Mode

-- / --

Introduction