You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd love a version of call_on_each_event that would not block, and instead register a callable with a reactor.
This could probably be combined with fairly general / framework agnostic async support by having the existing implementation be converted into a coroutine which awaits different kinds of things (treq requests in the Twisted case, synchronously-returning coroutines that just call requests in the default / existing case, aiohttp Futures for asyncio).
The text was updated successfully, but these errors were encountered:
I'd love a version of
call_on_each_event
that would not block, and instead register a callable with a reactor.This could probably be combined with fairly general / framework agnostic async support by having the existing implementation be converted into a coroutine which
await
s different kinds of things (treq
requests in the Twisted case, synchronously-returning coroutines that just call requests in the default / existing case,aiohttp
Futures for asyncio).The text was updated successfully, but these errors were encountered: