public class io.vertx.core.http.impl.ServerWebSocketImpl extends io.vertx.core.http.impl.WebSocketImplBase<io.vertx.core.http.impl.ServerWebSocketImpl> implements io.vertx.core.http.ServerWebSocket
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.impl.ServerWebSocketImpl
  super_class: io.vertx.core.http.impl.WebSocketImplBase
{
  private final io.vertx.core.http.impl.Http1xServerConnection conn;
    descriptor: Lio/vertx/core/http/impl/Http1xServerConnection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String scheme;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String uri;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String query;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private io.vertx.core.http.impl.Http1xServerRequest request;
    descriptor: Lio/vertx/core/http/impl/Http1xServerRequest;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Integer status;
    descriptor: Ljava/lang/Integer;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Promise<java.lang.Integer> handshakePromise;
    descriptor: Lio/vertx/core/Promise;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Promise<Ljava/lang/Integer;>;

  void <init>(io.vertx.core.impl.ContextInternal, io.vertx.core.http.impl.Http1xServerConnection, boolean, io.vertx.core.http.impl.Http1xServerRequest, io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker, int, int);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/http/impl/Http1xServerConnection;ZLio/vertx/core/http/impl/Http1xServerRequest;Lio/netty/handler/codec/http/websocketx/WebSocketServerHandshaker;II)V
    flags: (0x0000) 
    Code:
      stack=6, locals=8, args_size=8
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // io.vertx.core.http.impl.Http1xServerConnection conn
        start local 3 // boolean supportsContinuation
        start local 4 // io.vertx.core.http.impl.Http1xServerRequest request
        start local 5 // io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker handshaker
        start local 6 // int maxWebSocketFrameSize
        start local 7 // int maxWebSocketMessageSize
         0: .line 73
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* conn */
            iload 3 /* supportsContinuation */
            iload 6 /* maxWebSocketFrameSize */
            iload 7 /* maxWebSocketMessageSize */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase.<init>:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/http/impl/Http1xConnectionBase;ZII)V
         1: .line 74
            aload 0 /* this */
            aload 2 /* conn */
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
         2: .line 75
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.scheme:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.scheme:Ljava/lang/String;
         3: .line 76
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.host:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.host:Ljava/lang/String;
         4: .line 77
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.uri:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.uri:Ljava/lang/String;
         5: .line 78
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.path:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.path:Ljava/lang/String;
         6: .line 79
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.query:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.query:Ljava/lang/String;
         7: .line 80
            aload 0 /* this */
            aload 4 /* request */
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
         8: .line 81
            aload 0 /* this */
            aload 5 /* handshaker */
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.handshaker:Lio/netty/handler/codec/http/websocketx/WebSocketServerHandshaker;
         9: .line 83
            aload 0 /* this */
            aload 4 /* request */
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.headers:()Lio/vertx/core/MultiMap;
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.headers:(Lio/vertx/core/MultiMap;)V
        10: .line 84
            return
        end local 7 // int maxWebSocketMessageSize
        end local 6 // int maxWebSocketFrameSize
        end local 5 // io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker handshaker
        end local 4 // io.vertx.core.http.impl.Http1xServerRequest request
        end local 3 // boolean supportsContinuation
        end local 2 // io.vertx.core.http.impl.Http1xServerConnection conn
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   11     0                     this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   11     1                  context  Lio/vertx/core/impl/ContextInternal;
            0   11     2                     conn  Lio/vertx/core/http/impl/Http1xServerConnection;
            0   11     3     supportsContinuation  Z
            0   11     4                  request  Lio/vertx/core/http/impl/Http1xServerRequest;
            0   11     5               handshaker  Lio/netty/handler/codec/http/websocketx/WebSocketServerHandshaker;
            0   11     6    maxWebSocketFrameSize  I
            0   11     7  maxWebSocketMessageSize  I
    MethodParameters:
                         Name  Flags
      context                  
      conn                     
      supportsContinuation     
      request                  
      handshaker               
      maxWebSocketFrameSize    
      maxWebSocketMessageSize  

  public java.lang.String scheme();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 88
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.scheme:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public java.lang.String host();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.host:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public java.lang.String uri();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 98
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.uri:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public java.lang.String path();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 103
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.path:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public java.lang.String query();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.query:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public void accept();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 113
            aload 0 /* this */
            bipush 101
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.tryHandshake:(I)Ljava/lang/Boolean;
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpeq 2
         1: .line 114
            new java.lang.IllegalStateException
            dup
            ldc "WebSocket already rejected"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 116
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public void reject();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 120
            aload 0 /* this */
            sipush 502
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.reject:(I)V
         1: .line 121
            return
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public void reject(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // int sc
         0: .line 125
            iload 1 /* sc */
            bipush 101
            if_icmpne 2
         1: .line 126
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid WebSocket rejection status code: 101"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* sc */
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.tryHandshake:(I)Ljava/lang/Boolean;
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpeq 4
         3: .line 129
            new java.lang.IllegalStateException
            dup
            ldc "Cannot reject WebSocket, it has already been written to"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int sc
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0    5     1    sc  I
    MethodParameters:
      Name  Flags
      sc    

  public javax.net.ssl.SSLSession sslSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 135
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.sslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  public javax.security.cert.X509Certificate[] peerCertificateChain();
    descriptor: ()[Ljavax/security/cert/X509Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 140
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.peerCertificateChain:()[Ljavax/security/cert/X509Certificate;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  public io.vertx.core.Future<java.lang.Void> close(short, java.lang.String);
    descriptor: (SLjava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // short statusCode
        start local 2 // java.lang.String reason
         0: .line 145
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 3
            monitorenter
         1: .line 146
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
            ifnonnull 6
         2: .line 147
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshakePromise:Lio/vertx/core/Promise;
            ifnonnull 5
         3: .line 148
            aload 0 /* this */
            bipush 101
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.tryHandshake:(I)Ljava/lang/Boolean;
            pop
         4: .line 149
            goto 6
         5: .line 150
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshakePromise:Lio/vertx/core/Promise;
            bipush 101
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface io.vertx.core.Promise.tryComplete:(Ljava/lang/Object;)Z
            pop
         6: .line 145
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        10: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* statusCode */
            aload 2 /* reason */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase.close:(SLjava/lang/String;)Lio/vertx/core/Future;
            areturn
        end local 2 // java.lang.String reason
        end local 1 // short statusCode
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   11     1  statusCode  S
            0   11     2      reason  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    Signature: (SLjava/lang/String;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
            Name  Flags
      statusCode  
      reason      

  public io.vertx.core.Future<java.lang.Void> writeFrame(io.vertx.core.http.WebSocketFrame);
    descriptor: (Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // io.vertx.core.http.WebSocketFrame frame
         0: .line 159
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 160
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.checkAccept:()Ljava/lang/Boolean;
            astore 3 /* check */
        start local 3 // java.lang.Boolean check
         2: .line 161
            aload 3 /* check */
            ifnonnull 4
         3: .line 162
            new java.lang.IllegalStateException
            dup
            ldc "Cannot write to WebSocket, it is pending accept or reject"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 164
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection java.lang.Boolean
      StackMap stack:
            aload 3 /* check */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifne 6
         5: .line 165
            new java.lang.IllegalStateException
            dup
            ldc "Cannot write to WebSocket, it has been rejected"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* frame */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/Future;
            aload 2
            monitorexit
         7: areturn
        end local 3 // java.lang.Boolean check
         8: .line 159
      StackMap locals: io.vertx.core.http.impl.ServerWebSocketImpl io.vertx.core.http.WebSocketFrame io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         9: athrow
        end local 1 // io.vertx.core.http.WebSocketFrame frame
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   10     1  frame  Lio/vertx/core/http/WebSocketFrame;
            2    8     3  check  Ljava/lang/Boolean;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    Signature: (Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
       Name  Flags
      frame  

  private java.lang.Boolean checkAccept();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 172
            aload 0 /* this */
            bipush 101
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.tryHandshake:(I)Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  private void handleHandshake(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // int sc
         0: .line 176
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 177
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
            ifnonnull 7
         2: .line 178
            iload 1 /* sc */
            bipush 101
            if_icmpne 5
         3: .line 179
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.doHandshake:()V
         4: .line 180
            goto 7
         5: .line 181
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            iload 1 /* sc */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
         6: .line 182
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.channel:()Lio/netty/channel/Channel;
            iload 1 /* sc */
            invokestatic io.netty.handler.codec.http.HttpResponseStatus.valueOf:(I)Lio/netty/handler/codec/http/HttpResponseStatus;
            invokestatic io.vertx.core.http.impl.HttpUtils.sendError:(Lio/netty/channel/Channel;Lio/netty/handler/codec/http/HttpResponseStatus;)V
         7: .line 176
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 2
            monitorexit
        10: athrow
        11: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int sc
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   12     1    sc  I
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any
    MethodParameters:
      Name  Flags
      sc    

  private void doHandshake();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=5, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 189
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.channel:()Lio/netty/channel/Channel;
            astore 1 /* channel */
        start local 1 // io.netty.channel.Channel channel
         1: .line 192
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshaker:Lio/netty/handler/codec/http/websocketx/WebSocketServerHandshaker;
            aload 1 /* channel */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.nettyRequest:()Lio/netty/handler/codec/http/HttpRequest;
            invokevirtual io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker.handshake:(Lio/netty/channel/Channel;Lio/netty/handler/codec/http/HttpRequest;)Lio/netty/channel/ChannelFuture;
            pop
         2: .line 193
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
            getfield io.vertx.core.http.impl.Http1xServerRequest.metric:Ljava/lang/Object;
            astore 2 /* metric */
        start local 2 // java.lang.Object metric
         3: .line 194
            goto 10
        end local 2 // java.lang.Object metric
      StackMap locals: io.vertx.core.http.impl.ServerWebSocketImpl io.netty.channel.Channel
      StackMap stack: java.lang.Exception
         4: astore 3 /* e */
        start local 3 // java.lang.Exception e
         5: .line 195
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
            invokevirtual io.vertx.core.http.impl.Http1xServerRequest.response:()Lio/vertx/core/http/impl/Http1xServerResponse;
            getstatic io.netty.handler.codec.http.HttpResponseStatus.BAD_REQUEST:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            invokevirtual io.vertx.core.http.impl.Http1xServerResponse.setStatusCode:(I)Lio/vertx/core/http/HttpServerResponse;
            invokeinterface io.vertx.core.http.HttpServerResponse.end:()Lio/vertx/core/Future;
            pop
         6: .line 196
            aload 3 /* e */
            athrow
        end local 3 // java.lang.Exception e
         7: .line 197
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
         8: .line 198
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
         9: .line 199
            aload 4
            athrow
        start local 2 // java.lang.Object metric
        10: .line 198
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.request:Lio/vertx/core/http/impl/Http1xServerRequest;
        11: .line 200
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.metrics:Lio/vertx/core/spi/metrics/HttpServerMetrics;
            ifnull 13
        12: .line 201
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.metrics:Lio/vertx/core/spi/metrics/HttpServerMetrics;
            aload 2 /* metric */
            new io.vertx.core.http.impl.HttpResponseHead
            dup
            getstatic io.vertx.core.http.HttpVersion.HTTP_1_1:Lio/vertx/core/http/HttpVersion;
            bipush 101
            ldc "Switching Protocol"
            invokestatic io.vertx.core.MultiMap.caseInsensitiveMultiMap:()Lio/vertx/core/MultiMap;
            invokespecial io.vertx.core.http.impl.HttpResponseHead.<init>:(Lio/vertx/core/http/HttpVersion;ILjava/lang/String;Lio/vertx/core/MultiMap;)V
            invokeinterface io.vertx.core.spi.metrics.HttpServerMetrics.responseBegin:(Ljava/lang/Object;Lio/vertx/core/spi/observability/HttpResponse;)V
        13: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.responseComplete:()V
        14: .line 204
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpResponseStatus.SWITCHING_PROTOCOLS:Lio/netty/handler/codec/http/HttpResponseStatus;
            invokevirtual io.netty.handler.codec.http.HttpResponseStatus.code:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
        15: .line 205
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshaker:Lio/netty/handler/codec/http/websocketx/WebSocketServerHandshaker;
            invokevirtual io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker.selectedSubprotocol:()Ljava/lang/String;
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.subProtocol:(Ljava/lang/String;)V
        16: .line 207
            aload 1 /* channel */
            invokeinterface io.netty.channel.Channel.pipeline:()Lio/netty/channel/ChannelPipeline;
            astore 3 /* pipeline */
        start local 3 // io.netty.channel.ChannelPipeline pipeline
        17: .line 208
            aload 3 /* pipeline */
            ldc Lio/vertx/core/http/impl/HttpChunkContentCompressor;
            invokeinterface io.netty.channel.ChannelPipeline.get:(Ljava/lang/Class;)Lio/netty/channel/ChannelHandler;
            astore 4 /* handler */
        start local 4 // io.netty.channel.ChannelHandler handler
        18: .line 209
            aload 4 /* handler */
            ifnull 20
        19: .line 210
            aload 3 /* pipeline */
            aload 4 /* handler */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        20: .line 212
      StackMap locals: io.netty.channel.ChannelPipeline io.netty.channel.ChannelHandler
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.getContext:()Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.owner:()Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.eventBus:()Lio/vertx/core/eventbus/EventBus;
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.registerHandler:(Lio/vertx/core/eventbus/EventBus;)V
        21: .line 213
            return
        end local 4 // io.netty.channel.ChannelHandler handler
        end local 3 // io.netty.channel.ChannelPipeline pipeline
        end local 2 // java.lang.Object metric
        end local 1 // io.netty.channel.Channel channel
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            1   22     1   channel  Lio/netty/channel/Channel;
            3    4     2    metric  Ljava/lang/Object;
           10   22     2    metric  Ljava/lang/Object;
            5    7     3         e  Ljava/lang/Exception;
           17   22     3  pipeline  Lio/netty/channel/ChannelPipeline;
           18   22     4   handler  Lio/netty/channel/ChannelHandler;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.Exception
           1     7       7  any

  java.lang.Boolean tryHandshake(int);
    descriptor: (I)Ljava/lang/Boolean;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // int sc
         0: .line 216
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 2
            monitorenter
         1: .line 217
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
            ifnonnull 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshakePromise:Lio/vertx/core/Promise;
            ifnonnull 3
         2: .line 218
            aload 0 /* this */
            iload 1 /* sc */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.setHandshake:(Lio/vertx/core/Future;)Lio/vertx/core/Future;
            pop
         3: .line 220
      StackMap locals: io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
            ifnonnull 4
            aconst_null
            goto 7
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.status:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            iload 1 /* sc */
            if_icmpne 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
      StackMap locals:
      StackMap stack: java.lang.Boolean
         7: aload 2
            monitorexit
         8: areturn
         9: .line 216
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        10: athrow
        end local 1 // int sc
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   11     1    sc  I
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any
    MethodParameters:
      Name  Flags
      sc    

  public void setHandshake(io.vertx.core.Future<java.lang.Integer>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Integer>>);
    descriptor: (Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // io.vertx.core.Future future
        start local 2 // io.vertx.core.Handler handler
         0: .line 226
            aload 0 /* this */
            aload 1 /* future */
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.setHandshake:(Lio/vertx/core/Future;)Lio/vertx/core/Future;
            astore 3 /* fut */
        start local 3 // io.vertx.core.Future fut
         1: .line 227
            aload 3 /* fut */
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 228
            return
        end local 3 // io.vertx.core.Future fut
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.Future future
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0    3     1   future  Lio/vertx/core/Future<Ljava/lang/Integer;>;
            0    3     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;>;
            1    3     3      fut  Lio/vertx/core/Future<Ljava/lang/Integer;>;
    Signature: (Lio/vertx/core/Future<Ljava/lang/Integer;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;>;)V
    MethodParameters:
         Name  Flags
      future   
      handler  

  public io.vertx.core.Future<java.lang.Integer> setHandshake(io.vertx.core.Future<java.lang.Integer>);
    descriptor: (Lio/vertx/core/Future;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // io.vertx.core.Future future
         0: .line 232
            aload 1 /* future */
            ifnonnull 2
         1: .line 233
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 236
      StackMap locals:
      StackMap stack:
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 2 /* p1 */
        start local 2 // io.vertx.core.Promise p1
         3: .line 237
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            astore 3 /* p2 */
        start local 3 // io.vertx.core.Promise p2
         4: .line 238
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            dup
            astore 4
            monitorenter
         5: .line 239
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.handshakePromise:Lio/vertx/core/Promise;
            ifnull 7
         6: .line 240
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         7: .line 242
      StackMap locals: io.vertx.core.Promise io.vertx.core.Promise io.vertx.core.http.impl.Http1xServerConnection
      StackMap stack:
            aload 0 /* this */
            aload 2 /* p1 */
            putfield io.vertx.core.http.impl.ServerWebSocketImpl.handshakePromise:Lio/vertx/core/Promise;
         8: .line 238
            aload 4
            monitorexit
         9: goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 4
            monitorexit
        11: athrow
        12: .line 244
      StackMap locals:
      StackMap stack:
            aload 1 /* future */
            aload 2 /* p1 */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        13: .line 245
            aload 2 /* p1 */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 0 /* this */
            aload 3 /* p2 */
            invokedynamic handle(Lio/vertx/core/http/impl/ServerWebSocketImpl;Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/ServerWebSocketImpl.lambda$0(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        14: .line 253
            aload 3 /* p2 */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise p2
        end local 2 // io.vertx.core.Promise p1
        end local 1 // io.vertx.core.Future future
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0   15     1  future  Lio/vertx/core/Future<Ljava/lang/Integer;>;
            3   15     2      p1  Lio/vertx/core/Promise<Ljava/lang/Integer;>;
            4   15     3      p2  Lio/vertx/core/Promise<Ljava/lang/Integer;>;
      Exception table:
        from    to  target  type
           5     9      10  any
          10    11      10  any
    Signature: (Lio/vertx/core/Future<Ljava/lang/Integer;>;)Lio/vertx/core/Future<Ljava/lang/Integer;>;
    MethodParameters:
        Name  Flags
      future  

  protected void closeConnection();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
         0: .line 258
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            invokevirtual io.vertx.core.http.impl.Http1xServerConnection.channelHandlerContext:()Lio/netty/channel/ChannelHandlerContext;
            invokeinterface io.netty.channel.ChannelHandlerContext.close:()Lio/netty/channel/ChannelFuture;
            pop
         1: .line 259
            return
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;

  protected void handleClose(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 1 // boolean graceful
         0: .line 263
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ServerWebSocketImpl.conn:Lio/vertx/core/http/impl/Http1xServerConnection;
            getfield io.vertx.core.http.impl.Http1xServerConnection.metrics:Lio/vertx/core/spi/metrics/HttpServerMetrics;
            astore 2 /* metrics */
        start local 2 // io.vertx.core.spi.metrics.HttpServerMetrics metrics
         1: .line 264
            getstatic io.vertx.core.spi.metrics.Metrics.METRICS_ENABLED:Z
            ifeq 4
            aload 2 /* metrics */
            ifnull 4
         2: .line 265
            aload 2 /* metrics */
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.getMetric:()Ljava/lang/Object;
            invokeinterface io.vertx.core.spi.metrics.HttpServerMetrics.disconnected:(Ljava/lang/Object;)V
         3: .line 266
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.setMetric:(Ljava/lang/Object;)V
         4: .line 268
      StackMap locals: io.vertx.core.spi.metrics.HttpServerMetrics
      StackMap stack:
            aload 0 /* this */
            iload 1 /* graceful */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase.handleClose:(Z)V
         5: .line 269
            return
        end local 2 // io.vertx.core.spi.metrics.HttpServerMetrics metrics
        end local 1 // boolean graceful
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0    6     1  graceful  Z
            1    6     2   metrics  Lio/vertx/core/spi/metrics/HttpServerMetrics;
    MethodParameters:
          Name  Flags
      graceful  

  public io.vertx.core.http.ServerWebSocket frameHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.frameHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket writeFinalTextFrame(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.writeFinalTextFrame:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket writeTextMessage(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.writeTextMessage:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.setWriteQueueMaxSize:(I)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket closeHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.closeHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket resume();
    descriptor: ()Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.resume:()Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket writeFinalBinaryFrame(io.vertx.core.buffer.Buffer, io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.writeFinalBinaryFrame:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket handler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket writeBinaryMessage(io.vertx.core.buffer.Buffer, io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.writeBinaryMessage:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket writeFrame(io.vertx.core.http.WebSocketFrame, io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket pause();
    descriptor: ()Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.pause:()Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket drainHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.http.ServerWebSocket fetch(long);
    descriptor: (J)Lio/vertx/core/http/ServerWebSocket;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.fetch:(J)Lio/vertx/core/http/WebSocketBase;
            checkcast io.vertx.core.http.ServerWebSocket
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
        start local 2 // io.vertx.core.AsyncResult ar
         0: .line 246
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 247
            aload 0 /* this */
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.handleHandshake:(I)V
         2: .line 248
            goto 4
         3: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            sipush 500
            invokevirtual io.vertx.core.http.impl.ServerWebSocketImpl.handleHandshake:(I)V
         4: .line 251
      StackMap locals:
      StackMap stack:
            aload 1
            aload 2 /* ar */
            invokeinterface io.vertx.core.Promise.handle:(Lio/vertx/core/AsyncResult;)V
         5: .line 252
            return
        end local 2 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.core.http.impl.ServerWebSocketImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/http/impl/ServerWebSocketImpl;
            0    6     2    ar  Lio/vertx/core/AsyncResult<Ljava/lang/Integer;>;
}
Signature: Lio/vertx/core/http/impl/WebSocketImplBase<Lio/vertx/core/http/impl/ServerWebSocketImpl;>;Lio/vertx/core/http/ServerWebSocket;
SourceFile: "ServerWebSocketImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles