Closed Iapetus-11 closed 3 years ago
I implemented async_query() using a ThreadPoolExecutor which runs the sync function query() in a separate thread to not block the event loop. This was made in response to issue #122.
async_query()
ThreadPoolExecutor
query()
Oh merge conflict due to black autoformatting those files 1 sec
I implemented
async_query()
using aThreadPoolExecutor
which runs the sync functionquery()
in a separate thread to not block the event loop. This was made in response to issue #122.