public void OnRstStreamRead(IChannelHandlerContext ctx, int streamId, Http2Error errorCode)
 {
     _logger.LogRstStream(Direction.Inbound, ctx, streamId, errorCode);
     _listener.OnRstStreamRead(ctx, streamId, errorCode);
 }
Example #2
0
 public virtual void OnRstStreamRead(IChannelHandlerContext ctx, int streamId, Http2Error errorCode)
 {
     _listener.OnRstStreamRead(ctx, streamId, errorCode);
 }
Example #3
0
        void ReadRstStreamFrame(IChannelHandlerContext ctx, IByteBuffer payload, IHttp2FrameListener listener)
        {
            long errorCode = payload.ReadUnsignedInt();

            listener.OnRstStreamRead(ctx, _streamId, (Http2Error)errorCode);
        }