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
Once #2722 is complete, I would suggest we inline the HandlerWrapper component into the swarm::Connection struct.
This will resolve some indirection which:
Allows us to use the incoming substream limit to enforce back-pressure
Simplifies understanding of the code because StreamMuxer and ConnectionHandler are polled by the same component (Connection) and directly pass data between each other instead of going through another layer.
The text was updated successfully, but these errors were encountered:
Once #2722 is complete, I would suggest we inline the
HandlerWrapper
component into theswarm::Connection
struct.This will resolve some indirection which:
StreamMuxer
andConnectionHandler
are polled by the same component (Connection
) and directly pass data between each other instead of going through another layer.The text was updated successfully, but these errors were encountered: