class io.vertx.core.http.impl.WebSocketHandshakeInboundHandler extends io.netty.channel.ChannelInboundHandlerAdapter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.http.impl.WebSocketHandshakeInboundHandler
  super_class: io.netty.channel.ChannelInboundHandlerAdapter
{
  private final io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>> wsHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;

  private final io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker handshaker;
    descriptor: Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.netty.channel.ChannelHandlerContext chctx;
    descriptor: Lio/netty/channel/ChannelHandlerContext;
    flags: (0x0002) ACC_PRIVATE

  private io.netty.handler.codec.http.FullHttpResponse response;
    descriptor: Lio/netty/handler/codec/http/FullHttpResponse;
    flags: (0x0002) ACC_PRIVATE

  void <init>(io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;Lio/vertx/core/Handler;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
        start local 1 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker handshaker
        start local 2 // io.vertx.core.Handler wsHandler
         0: .line 41
            aload 0 /* this */
            invokespecial io.netty.channel.ChannelInboundHandlerAdapter.<init>:()V
         1: .line 42
            aload 0 /* this */
            aload 1 /* handshaker */
            putfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.handshaker:Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
         2: .line 43
            aload 0 /* this */
            aload 2 /* wsHandler */
            putfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.wsHandler:Lio/vertx/core/Handler;
         3: .line 44
            return
        end local 2 // io.vertx.core.Handler wsHandler
        end local 1 // io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker handshaker
        end local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/http/impl/WebSocketHandshakeInboundHandler;
            0    4     1  handshaker  Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
            0    4     2   wsHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
            Name  Flags
      handshaker  
      wsHandler   

  public void handlerAdded(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.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 48
            aload 0 /* this */
            aload 1 /* ctx */
            invokespecial io.netty.channel.ChannelInboundHandlerAdapter.handlerAdded:(Lio/netty/channel/ChannelHandlerContext;)V
         1: .line 49
            aload 0 /* this */
            aload 1 /* ctx */
            putfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.chctx:Lio/netty/channel/ChannelHandlerContext;
         2: .line 50
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/WebSocketHandshakeInboundHandler;
            0    3     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   

  public void channelInactive(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 54
            aload 0 /* this */
            aload 1 /* ctx */
            invokespecial io.netty.channel.ChannelInboundHandlerAdapter.channelInactive:(Lio/netty/channel/ChannelHandlerContext;)V
         1: .line 57
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.wsHandler:Lio/vertx/core/Handler;
            new io.netty.handler.codec.http.websocketx.WebSocketHandshakeException
            dup
            ldc "Connection closed while handshake in process"
            invokespecial io.netty.handler.codec.http.websocketx.WebSocketHandshakeException.<init>:(Ljava/lang/String;)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 58
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/WebSocketHandshakeInboundHandler;
            0    3     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   

  public void channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Object msg
         0: .line 62
            aload 2 /* msg */
            instanceof io.netty.handler.codec.http.HttpResponse
            ifeq 4
         1: .line 63
            aload 2 /* msg */
            checkcast io.netty.handler.codec.http.HttpResponse
            astore 3 /* resp */
        start local 3 // io.netty.handler.codec.http.HttpResponse resp
         2: .line 64
            aload 0 /* this */
            new io.netty.handler.codec.http.DefaultFullHttpResponse
            dup
            aload 3 /* resp */
            invokeinterface io.netty.handler.codec.http.HttpResponse.protocolVersion:()Lio/netty/handler/codec/http/HttpVersion;
            aload 3 /* resp */
            invokeinterface io.netty.handler.codec.http.HttpResponse.status:()Lio/netty/handler/codec/http/HttpResponseStatus;
            invokespecial io.netty.handler.codec.http.DefaultFullHttpResponse.<init>:(Lio/netty/handler/codec/http/HttpVersion;Lio/netty/handler/codec/http/HttpResponseStatus;)V
            putfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
         3: .line 65
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
            invokeinterface io.netty.handler.codec.http.FullHttpResponse.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            aload 3 /* resp */
            invokeinterface io.netty.handler.codec.http.HttpResponse.headers:()Lio/netty/handler/codec/http/HttpHeaders;
            invokevirtual io.netty.handler.codec.http.HttpHeaders.add:(Lio/netty/handler/codec/http/HttpHeaders;)Lio/netty/handler/codec/http/HttpHeaders;
            pop
        end local 3 // io.netty.handler.codec.http.HttpResponse resp
         4: .line 67
      StackMap locals:
      StackMap stack:
            aload 2 /* msg */
            instanceof io.netty.handler.codec.http.HttpContent
            ifeq 16
         5: .line 68
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
            ifnull 16
         6: .line 69
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
            invokeinterface io.netty.handler.codec.http.FullHttpResponse.content:()Lio/netty/buffer/ByteBuf;
            aload 2 /* msg */
            checkcast io.netty.handler.codec.http.HttpContent
            invokeinterface io.netty.handler.codec.http.HttpContent.content:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         7: .line 70
            aload 2 /* msg */
            instanceof io.netty.handler.codec.http.LastHttpContent
            ifeq 16
         8: .line 71
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
            invokeinterface io.netty.handler.codec.http.FullHttpResponse.trailingHeaders:()Lio/netty/handler/codec/http/HttpHeaders;
            aload 2 /* msg */
            checkcast io.netty.handler.codec.http.LastHttpContent
            invokeinterface io.netty.handler.codec.http.LastHttpContent.trailingHeaders:()Lio/netty/handler/codec/http/HttpHeaders;
            invokevirtual io.netty.handler.codec.http.HttpHeaders.add:(Lio/netty/handler/codec/http/HttpHeaders;)Lio/netty/handler/codec/http/HttpHeaders;
            pop
         9: .line 72
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            astore 3 /* pipeline */
        start local 3 // io.netty.channel.ChannelPipeline pipeline
        10: .line 73
            aload 3 /* pipeline */
            aload 0 /* this */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        11: .line 74
            aload 3 /* pipeline */
            ldc Lio/netty/handler/codec/http/HttpContentDecompressor;
            invokeinterface io.netty.channel.ChannelPipeline.get:(Ljava/lang/Class;)Lio/netty/channel/ChannelHandler;
            astore 4 /* handler */
        start local 4 // io.netty.channel.ChannelHandler handler
        12: .line 75
            aload 4 /* handler */
            ifnull 14
        13: .line 77
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            aload 4 /* handler */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        14: .line 79
      StackMap locals: io.netty.channel.ChannelPipeline io.netty.channel.ChannelHandler
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.response:Lio/netty/handler/codec/http/FullHttpResponse;
            invokevirtual io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.handshakeComplete:(Lio/netty/handler/codec/http/FullHttpResponse;)Lio/vertx/core/Future;
            astore 5 /* fut */
        start local 5 // io.vertx.core.Future fut
        15: .line 80
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.wsHandler:Lio/vertx/core/Handler;
            aload 5 /* fut */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 5 // io.vertx.core.Future fut
        end local 4 // io.netty.channel.ChannelHandler handler
        end local 3 // io.netty.channel.ChannelPipeline pipeline
        16: .line 84
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object msg
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lio/vertx/core/http/impl/WebSocketHandshakeInboundHandler;
            0   17     1       ctx  Lio/netty/channel/ChannelHandlerContext;
            0   17     2       msg  Ljava/lang/Object;
            2    4     3      resp  Lio/netty/handler/codec/http/HttpResponse;
           10   16     3  pipeline  Lio/netty/channel/ChannelPipeline;
           12   16     4   handler  Lio/netty/channel/ChannelHandler;
           15   16     5       fut  Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
      Name  Flags
      ctx   
      msg   

  private io.vertx.core.Future<java.lang.Void> handshakeComplete(io.netty.handler.codec.http.FullHttpResponse);
    descriptor: (Lio/netty/handler/codec/http/FullHttpResponse;)Lio/vertx/core/Future;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
        start local 1 // io.netty.handler.codec.http.FullHttpResponse response
         0: .line 87
            aload 1 /* response */
            invokeinterface io.netty.handler.codec.http.FullHttpResponse.status:()Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            bipush 101
            if_icmpeq 2
         1: .line 88
            new io.vertx.core.http.WebsocketRejectedException
            dup
            aload 1 /* response */
            invokeinterface io.netty.handler.codec.http.FullHttpResponse.status:()Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            invokespecial io.vertx.core.http.WebsocketRejectedException.<init>:(I)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
         2: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.handshaker:Lio/netty/handler/codec/http/websocketx/WebSocketClientHandshaker;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketHandshakeInboundHandler.chctx:Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.channel:()Lio/netty/channel/Channel;
            aload 1 /* response */
            invokevirtual io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker.finishHandshake:(Lio/netty/channel/Channel;Lio/netty/handler/codec/http/FullHttpResponse;)V
         3: .line 92
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
         4: areturn
         5: .line 93
      StackMap locals:
      StackMap stack: io.netty.handler.codec.http.websocketx.WebSocketHandshakeException
            astore 2 /* e */
        start local 2 // io.netty.handler.codec.http.websocketx.WebSocketHandshakeException e
         6: .line 94
            aload 2 /* e */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.netty.handler.codec.http.websocketx.WebSocketHandshakeException e
        end local 1 // io.netty.handler.codec.http.FullHttpResponse response
        end local 0 // io.vertx.core.http.impl.WebSocketHandshakeInboundHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/core/http/impl/WebSocketHandshakeInboundHandler;
            0    7     1  response  Lio/netty/handler/codec/http/FullHttpResponse;
            6    7     2         e  Lio/netty/handler/codec/http/websocketx/WebSocketHandshakeException;
      Exception table:
        from    to  target  type
           2     4       5  Class io.netty.handler.codec.http.websocketx.WebSocketHandshakeException
    Signature: (Lio/netty/handler/codec/http/FullHttpResponse;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
          Name  Flags
      response  
}
SourceFile: "WebSocketHandshakeInboundHandler.java"