William Ferguson
William Ferguson
Can you provide an example of the 10 lines of codes required to replace EventBus using RxJava?
IMHO you are thinking about events improperly. When an event in your system occurs, the event should be propagated to all interested parties at some time after the event has...
Use threadMode = Async and they will be uncoupled.
I would expect that all events requested to be delivered via a certain delivery mode would be _processed_ in the order that they were posted. The actual order of delivery...
That makes sense to me. That was the intent behind #308 . Provide the capability and then make it default. I have have come to believe that all events handled...
The intent of an EventBus is to decouple event emitter from event consumer. By posting an event on the same thread as the emitter you are coupling the emitter to...
IMHO the only thread mode that should be supported by an EventBus is async (where the async thread comes from is an orthogonal issue), with perhaps a convenience method to...
What's the use case for subclassing EventBus? I would instead argue for making the class final and explicitly disallow subclassing.
Upgraded Node from v15 to v17 and Bleak installs but mitmproxy==4.0.1 fails to install. ``` Installing collected packages: cryptography, wsproto, urwid, tornado, sortedcontainers, ruamel.yaml, pyperclip, pyparsing, pyOpenSSL, pydivert, passlib, ldap3,...
I gave up trying to install mitmproxy==4.0.1 and instead just installed latest mitmproxy (7.0.4) which wortked. Hopefully that will be OK for BLeak.