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
The WAMP IDL code generator (xbrnetwork CLI included with Autobahn) currently generates code that imports txaio and select Twisted. When writing asyncio programs, this is inconvenient. The problem is time_ns:
Kind of the whole premise of txaio is "select things via imports" .. now, those are usually like the autobahn.wamp.{twisted,asyncio} method (the .use_*() calls are in there) but ... might be expedient to just move / duplicate it..?
...but also, it seems it's only there to support Python versions less than 3.7 -- above that it's time.time_ns()
The WAMP IDL code generator (
xbrnetwork
CLI included with Autobahn) currently generates code that imports txaio and select Twisted. When writing asyncio programs, this is inconvenient. The problem istime_ns
:We either need a way to use
txaio.time_ns
without selecting a networking framework, or we need to move the helper eg to zLMDB.The text was updated successfully, but these errors were encountered: