mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
840 B
840 B
title | date | draft | tags | medium_enabled | |
---|---|---|---|---|---|
Quick Python: Async Callbacks | 2020-07-11T20:23:29-04:00 | false |
|
true |
I've written a post on using callbacks in Python. Though to add callbacks to asyncio
functions, you'll have to interact with the loop object directly. Replace the emit function in the previous post with the following:
class Application:
# ...
def emit(self, message):
for callback in self.callbacks:
if asyncio.iscoroutine(callback):
loop = asyncio.get_running_loop()
loop.call_soon(
functools.partial(
asyncio.ensure_future,
callback(message)
)
)
else:
callback(message)