class io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 extends io.netty.channel.SimpleChannelInboundHandler<io.netty.handler.codec.http.FullHttpResponse>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4
  super_class: io.netty.channel.SimpleChannelInboundHandler
{
  final io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker this$0;
    descriptor: Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final io.netty.channel.Channel val$channel;
    descriptor: Lio/netty/channel/Channel;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final io.netty.channel.ChannelPromise val$promise;
    descriptor: Lio/netty/channel/ChannelPromise;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker, io.netty.channel.Channel, io.netty.channel.ChannelPromise);
    descriptor: (Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;Lio/netty/channel/Channel;Lio/netty/channel/ChannelPromise;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
         0: .line 354
            aload 0 /* this */
            aload 1
            putfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.this$0:Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
            aload 0 /* this */
            aload 2
            putfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$channel:Lio/netty/channel/Channel;
            aload 0 /* this */
            aload 3
            putfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$promise:Lio/netty/channel/ChannelPromise;
            aload 0 /* this */
            invokespecial io.netty.channel.SimpleChannelInboundHandler.<init>:()V
            return
        end local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker$4;
    MethodParameters:
             Name  Flags
      this$0       final
      val$channel  final
      val$promise  final

  protected void channelRead0(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.FullHttpResponse);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/http/FullHttpResponse;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.handler.codec.http.FullHttpResponse msg
         0: .line 358
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            aload 0 /* this */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         1: .line 360
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.this$0:Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$channel:Lio/netty/channel/Channel;
            aload 2 /* msg */
            invokevirtual io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker.finishHandshake:(Lio/netty/channel/Channel;Lio/netty/handler/codec/http/FullHttpResponse;)V
         2: .line 361
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$promise:Lio/netty/channel/ChannelPromise;
            invokeinterface io.netty.channel.ChannelPromise.setSuccess:()Lio/netty/channel/ChannelPromise;
            pop
         3: .line 362
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 3 /* cause */
        start local 3 // java.lang.Throwable cause
         5: .line 363
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$promise:Lio/netty/channel/ChannelPromise;
            aload 3 /* cause */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
        end local 3 // java.lang.Throwable cause
         6: .line 365
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.handler.codec.http.FullHttpResponse msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker$4;
            0    7     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0    7     2    msg  Lio/netty/handler/codec/http/FullHttpResponse;
            5    6     3  cause  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.Throwable
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
      msg   

  public void exceptionCaught(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Throwable cause
         0: .line 370
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            aload 0 /* this */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         1: .line 371
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$promise:Lio/netty/channel/ChannelPromise;
            aload 2 /* cause */
            invokeinterface io.netty.channel.ChannelPromise.setFailure:(Ljava/lang/Throwable;)Lio/netty/channel/ChannelPromise;
            pop
         2: .line 372
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker$4;
            0    3     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0    3     2  cause  Ljava/lang/Throwable;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
       Name  Flags
      ctx    
      cause  

  public void channelInactive(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 377
            aload 0 /* this */
            getfield io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.val$promise:Lio/netty/channel/ChannelPromise;
            getstatic io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker.CLOSED_CHANNEL_EXCEPTION:Ljava/nio/channels/ClosedChannelException;
            invokeinterface io.netty.channel.ChannelPromise.tryFailure:(Ljava/lang/Throwable;)Z
            pop
         1: .line 378
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireChannelInactive:()Lio/netty/channel/ChannelHandlerContext;
            pop
         2: .line 379
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker$4;
            0    3     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   

  protected void channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast io.netty.handler.codec.http.FullHttpResponse
            invokevirtual io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4.channelRead0:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/handler/codec/http/FullHttpResponse;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
Signature: Lio/netty/channel/SimpleChannelInboundHandler<Lio/netty/handler/codec/http/FullHttpResponse;>;
SourceFile: "WebSocketClientHandshaker.java"
EnclosingMethod: io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker.processHandshake:(Lio/netty/channel/Channel;Lio/netty/handler/codec/http/HttpResponse;Lio/netty/channel/ChannelPromise;)Lio/netty/channel/ChannelFuture;
NestHost: io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker
InnerClasses:
  io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker$4