Guys how can i run a process/thread concurrently to the main eventloop?
I need to update stuff in a dict from the handlers.
In the concurrent thread i need to access that dict and check if it is changed, if so: do some stuff.
loop.run_in_executor() with
concurrent.futures.ThreadPoolExecutor() can be a good choice?