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

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