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
Currently connectionSendAndFlush() in QuicheQuicChannel is called directly from within the same class and from QuicheQuicStreamChannel (Unsafe). This does not give any control to the user in terms of flushing. Could we instead use parent().pipeline().flush()? This way the user can add a handler to the QuicChannel pipeline to modify flushing behaviour. If this is potentially acceptable I can start working on implementing this for review.
Currently
connectionSendAndFlush()inQuicheQuicChannelis called directly from within the same class and fromQuicheQuicStreamChannel(Unsafe). This does not give any control to the user in terms of flushing. Could we instead useparent().pipeline().flush()? This way the user can add a handler to the QuicChannel pipeline to modify flushing behaviour. If this is potentially acceptable I can start working on implementing this for review.