public abstract class io.vertx.core.http.impl.WebSocketImplBase<S extends io.vertx.core.http.WebSocketBase> implements io.vertx.core.http.WebSocketBase
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.http.impl.WebSocketImplBase
  super_class: java.lang.Object
{
  private final boolean supportsContinuation;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private final int maxWebSocketFrameSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int maxWebSocketMessageSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.streams.impl.InboundBuffer<io.vertx.core.buffer.Buffer> pending;
    descriptor: Lio/vertx/core/streams/impl/InboundBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/streams/impl/InboundBuffer<Lio/vertx/core/buffer/Buffer;>;

  private io.vertx.core.eventbus.MessageConsumer binaryHandlerRegistration;
    descriptor: Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.eventbus.MessageConsumer textHandlerRegistration;
    descriptor: Lio/vertx/core/eventbus/MessageConsumer;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String subProtocol;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object metric;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Handler<io.vertx.core.http.impl.ws.WebSocketFrameInternal> frameHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/http/impl/ws/WebSocketFrameInternal;>;

  private io.vertx.core.Handler<io.vertx.core.buffer.Buffer> pongHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;

  private io.vertx.core.Handler<java.lang.Void> drainHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Throwable> exceptionHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Throwable;>;

  private io.vertx.core.Handler<java.lang.Void> closeHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Void> endHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  protected final io.vertx.core.http.impl.Http1xConnectionBase conn;
    descriptor: Lio/vertx/core/http/impl/Http1xConnectionBase;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected boolean closed;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  private static volatile int[] $SWITCH_TABLE$io$vertx$core$http$impl$FrameType;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  void <init>(io.vertx.core.http.impl.Http1xConnectionBase, boolean, int, int);
    descriptor: (Lio/vertx/core/http/impl/Http1xConnectionBase;ZII)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.http.impl.Http1xConnectionBase conn
        start local 2 // boolean supportsContinuation
        start local 3 // int maxWebSocketFrameSize
        start local 4 // int maxWebSocketMessageSize
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            iload 2 /* supportsContinuation */
            putfield io.vertx.core.http.impl.WebSocketImplBase.supportsContinuation:Z
         2: .line 70
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "__vertx.ws."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerID:Ljava/lang/String;
         3: .line 71
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "__vertx.ws."
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.UUID.randomUUID:()Ljava/util/UUID;
            invokevirtual java.util.UUID.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerID:Ljava/lang/String;
         4: .line 72
            aload 0 /* this */
            aload 1 /* conn */
            putfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
         5: .line 73
            aload 0 /* this */
            iload 3 /* maxWebSocketFrameSize */
            putfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketFrameSize:I
         6: .line 74
            aload 0 /* this */
            iload 4 /* maxWebSocketMessageSize */
            putfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketMessageSize:I
         7: .line 75
            aload 0 /* this */
            new io.vertx.core.streams.impl.InboundBuffer
            dup
            aload 1 /* conn */
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.getContext:()Lio/vertx/core/impl/ContextInternal;
            invokespecial io.vertx.core.streams.impl.InboundBuffer.<init>:(Lio/vertx/core/Context;)V
            putfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
         8: .line 77
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            aload 1 /* conn */
            invokedynamic handle(Lio/vertx/core/http/impl/Http1xConnectionBase;)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/WebSocketImplBase.lambda$0(Lio/vertx/core/http/impl/Http1xConnectionBase;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/impl/InboundBuffer;
            pop
         9: .line 80
            return
        end local 4 // int maxWebSocketMessageSize
        end local 3 // int maxWebSocketFrameSize
        end local 2 // boolean supportsContinuation
        end local 1 // io.vertx.core.http.impl.Http1xConnectionBase conn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   10     0                     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0   10     1                     conn  Lio/vertx/core/http/impl/Http1xConnectionBase;
            0   10     2     supportsContinuation  Z
            0   10     3    maxWebSocketFrameSize  I
            0   10     4  maxWebSocketMessageSize  I
    MethodParameters:
                         Name  Flags
      conn                     
      supportsContinuation     
      maxWebSocketFrameSize    
      maxWebSocketMessageSize  

  void registerHandler(io.vertx.core.eventbus.EventBus);
    descriptor: (Lio/vertx/core/eventbus/EventBus;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.eventbus.EventBus eventBus
         0: .line 83
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/WebSocketImplBase;)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/WebSocketImplBase.lambda$1(Lio/vertx/core/eventbus/Message;)V (7)
                  (Lio/vertx/core/eventbus/Message;)V
            astore 2 /* binaryHandler */
        start local 2 // io.vertx.core.Handler binaryHandler
         1: .line 84
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/http/impl/WebSocketImplBase;)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/WebSocketImplBase.lambda$2(Lio/vertx/core/eventbus/Message;)V (7)
                  (Lio/vertx/core/eventbus/Message;)V
            astore 3 /* textHandler */
        start local 3 // io.vertx.core.Handler textHandler
         2: .line 85
            aload 0 /* this */
            aload 1 /* eventBus */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerID:Ljava/lang/String;
            invokeinterface io.vertx.core.eventbus.EventBus.localConsumer:(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
            aload 2 /* binaryHandler */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            putfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         3: .line 86
            aload 0 /* this */
            aload 1 /* eventBus */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerID:Ljava/lang/String;
            invokeinterface io.vertx.core.eventbus.EventBus.localConsumer:(Ljava/lang/String;)Lio/vertx/core/eventbus/MessageConsumer;
            aload 3 /* textHandler */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            putfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         4: .line 87
            return
        end local 3 // io.vertx.core.Handler textHandler
        end local 2 // io.vertx.core.Handler binaryHandler
        end local 1 // io.vertx.core.eventbus.EventBus eventBus
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    5     1       eventBus  Lio/vertx/core/eventbus/EventBus;
            1    5     2  binaryHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<Lio/vertx/core/buffer/Buffer;>;>;
            2    5     3    textHandler  Lio/vertx/core/Handler<Lio/vertx/core/eventbus/Message<Ljava/lang/String;>;>;
    MethodParameters:
          Name  Flags
      eventBus  

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

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

  public boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 98
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 1
            monitorenter
         1: .line 99
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 100
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.isNotWritable:()Z
            aload 1
            monitorexit
         3: ireturn
         4: .line 98
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 106
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(Lio/vertx/core/Handler;)V
         1: .line 107
            return
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 111
            aload 0 /* this */
            sipush 1000
            aconst_null
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(SLjava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 112
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public void close(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // short statusCode
         0: .line 116
            aload 0 /* this */
            iload 1 /* statusCode */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(SLio/vertx/core/Handler;)V
         1: .line 117
            return
        end local 1 // short statusCode
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  statusCode  S
    MethodParameters:
            Name  Flags
      statusCode  

  public void close(short, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (SLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // short statusCode
        start local 2 // io.vertx.core.Handler handler
         0: .line 121
            aload 0 /* this */
            iload 1 /* statusCode */
            aconst_null
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(SLjava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 122
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // short statusCode
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  statusCode  S
            0    2     2     handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (SLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
            Name  Flags
      statusCode  
      handler     

  public void close(short, java.lang.String);
    descriptor: (SLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // short statusCode
        start local 2 // java.lang.String reason
         0: .line 126
            aload 0 /* this */
            iload 1 /* statusCode */
            aload 2 /* reason */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(SLjava/lang/String;Lio/vertx/core/Handler;)V
         1: .line 127
            return
        end local 2 // java.lang.String reason
        end local 1 // short statusCode
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  statusCode  S
            0    2     2      reason  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      statusCode  
      reason      

  public void close(short, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (SLjava/lang/String;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // short statusCode
        start local 2 // java.lang.String reason
        start local 3 // io.vertx.core.Handler handler
         0: .line 131
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 4
            monitorenter
         1: .line 132
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.closed:Z
            ifeq 4
         2: .line 133
            aload 4
            monitorexit
         3: return
         4: .line 135
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.WebSocketImplBase.closed:Z
         5: .line 131
            aload 4
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 4
            monitorexit
         8: athrow
         9: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.unregisterHandlers:()V
        10: .line 138
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            iload 1 /* statusCode */
            aload 2 /* reason */
            aload 3 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.closeWithPayload:(SLjava/lang/String;Lio/vertx/core/Handler;)V
        11: .line 139
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String reason
        end local 1 // short statusCode
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0   12     1  statusCode  S
            0   12     2      reason  Ljava/lang/String;
            0   12     3     handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
      Exception table:
        from    to  target  type
           1     3       7  any
           4     6       7  any
           7     8       7  any
    Signature: (SLjava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
            Name  Flags
      statusCode  
      reason      
      handler     

  public boolean isSsl();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 143
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.isSsl:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  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.WebSocketImplBase this
         0: .line 148
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.sslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  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.WebSocketImplBase this
         0: .line 153
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.peerCertificateChain:()[Ljavax/security/cert/X509Certificate;
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException

  public io.vertx.core.net.SocketAddress localAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 158
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.localAddress:()Lio/vertx/core/net/SocketAddress;
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  public io.vertx.core.net.SocketAddress remoteAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  public S writeFinalTextFrame(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String text
         0: .line 168
            aload 0 /* this */
            aload 1 /* text */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFinalTextFrame:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // java.lang.String text
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  text  Ljava/lang/String;
    Signature: (Ljava/lang/String;)TS;
    MethodParameters:
      Name  Flags
      text  

  public S writeFinalTextFrame(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String text
        start local 2 // io.vertx.core.Handler handler
         0: .line 173
            aload 0 /* this */
            aload 1 /* text */
            iconst_1
            invokestatic io.vertx.core.http.WebSocketFrame.textFrame:(Ljava/lang/String;Z)Lio/vertx/core/http/WebSocketFrame;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String text
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1     text  Ljava/lang/String;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    MethodParameters:
         Name  Flags
      text     
      handler  

  public S writeFinalBinaryFrame(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 178
            aload 0 /* this */
            aload 1 /* data */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFinalBinaryFrame:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  data  Lio/vertx/core/buffer/Buffer;
    Signature: (Lio/vertx/core/buffer/Buffer;)TS;
    MethodParameters:
      Name  Flags
      data  

  public S writeFinalBinaryFrame(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
        start local 2 // io.vertx.core.Handler handler
         0: .line 183
            aload 0 /* this */
            aload 1 /* data */
            iconst_1
            invokestatic io.vertx.core.http.WebSocketFrame.binaryFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1     data  Lio/vertx/core/buffer/Buffer;
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    MethodParameters:
         Name  Flags
      data     
      handler  

  public java.lang.String subProtocol();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 188
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 1
            monitorenter
         1: .line 189
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.subProtocol:Ljava/lang/String;
            aload 1
            monitorexit
         2: areturn
         3: .line 188
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  void subProtocol(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String subProtocol
         0: .line 194
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 195
            aload 0 /* this */
            aload 1 /* subProtocol */
            putfield io.vertx.core.http.impl.WebSocketImplBase.subProtocol:Ljava/lang/String;
         2: .line 194
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase java.lang.String io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 197
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String subProtocol
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  subProtocol  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
             Name  Flags
      subProtocol  

  public S writeBinaryMessage(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 201
            aload 0 /* this */
            aload 1 /* data */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeBinaryMessage:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  data  Lio/vertx/core/buffer/Buffer;
    Signature: (Lio/vertx/core/buffer/Buffer;)TS;
    MethodParameters:
      Name  Flags
      data  

  public S writeBinaryMessage(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
        start local 2 // io.vertx.core.Handler handler
         0: .line 206
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         1: .line 207
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 208
            aload 0 /* this */
            getstatic io.vertx.core.http.impl.FrameType.BINARY:Lio/vertx/core/http/impl/FrameType;
            aload 1 /* data */
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writePartialMessage:(Lio/vertx/core/http/impl/FrameType;Lio/vertx/core/buffer/Buffer;ILio/vertx/core/Handler;)V
         3: .line 209
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 206
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.buffer.Buffer io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1     data  Lio/vertx/core/buffer/Buffer;
            0    7     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    MethodParameters:
         Name  Flags
      data     
      handler  

  public S writeTextMessage(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String text
         0: .line 215
            aload 0 /* this */
            aload 1 /* text */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeTextMessage:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // java.lang.String text
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  text  Ljava/lang/String;
    Signature: (Ljava/lang/String;)TS;
    MethodParameters:
      Name  Flags
      text  

  public S writeTextMessage(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String text
        start local 2 // io.vertx.core.Handler handler
         0: .line 220
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         1: .line 221
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 222
            aload 1 /* text */
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            astore 4 /* data */
        start local 4 // io.vertx.core.buffer.Buffer data
         3: .line 223
            aload 0 /* this */
            getstatic io.vertx.core.http.impl.FrameType.TEXT:Lio/vertx/core/http/impl/FrameType;
            aload 4 /* data */
            iconst_0
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writePartialMessage:(Lio/vertx/core/http/impl/FrameType;Lio/vertx/core/buffer/Buffer;ILio/vertx/core/Handler;)V
         4: .line 224
            aload 0 /* this */
            aload 3
            monitorexit
         5: areturn
        end local 4 // io.vertx.core.buffer.Buffer data
         6: .line 220
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase java.lang.String io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         7: athrow
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String text
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    8     1     text  Ljava/lang/String;
            0    8     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            3    6     4     data  Lio/vertx/core/buffer/Buffer;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
         Name  Flags
      text     
      handler  

  public S write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 230
            aload 0 /* this */
            aload 1 /* data */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.write:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  data  Lio/vertx/core/buffer/Buffer;
    Signature: (Lio/vertx/core/buffer/Buffer;)TS;
    MethodParameters:
      Name  Flags
      data  

  public S write(io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
        start local 2 // io.vertx.core.Handler handler
         0: .line 235
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         1: .line 236
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 237
            aload 0 /* this */
            aload 1 /* data */
            iconst_1
            invokestatic io.vertx.core.http.WebSocketFrame.binaryFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            pop
         3: .line 238
            aload 0 /* this */
            aload 3
            monitorexit
         4: areturn
         5: .line 235
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.buffer.Buffer io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1     data  Lio/vertx/core/buffer/Buffer;
            0    7     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    MethodParameters:
         Name  Flags
      data     
      handler  

  public S writePing(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 244
            aload 1 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketFrameSize:I
            if_icmpgt 1
            aload 1 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            bipush 125
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IllegalStateException
            dup
            ldc "Ping cannot exceed maxWebSocketFrameSize or 125 bytes"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokestatic io.vertx.core.http.WebSocketFrame.pingFrame:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketFrame;
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    3     1  data  Lio/vertx/core/buffer/Buffer;
    Signature: (Lio/vertx/core/buffer/Buffer;)TS;
    MethodParameters:
      Name  Flags
      data  

  public S writePong(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 250
            aload 1 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketFrameSize:I
            if_icmpgt 1
            aload 1 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            bipush 125
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IllegalStateException
            dup
            ldc "Pong cannot exceed maxWebSocketFrameSize or 125 bytes"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokestatic io.vertx.core.http.WebSocketFrame.pongFrame:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketFrame;
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    3     1  data  Lio/vertx/core/buffer/Buffer;
    Signature: (Lio/vertx/core/buffer/Buffer;)TS;
    MethodParameters:
      Name  Flags
      data  

  private void writePartialMessage(io.vertx.core.http.impl.FrameType, io.vertx.core.buffer.Buffer, int, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/http/impl/FrameType;Lio/vertx/core/buffer/Buffer;ILio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.http.impl.FrameType frameType
        start local 2 // io.vertx.core.buffer.Buffer data
        start local 3 // int offset
        start local 4 // io.vertx.core.Handler handler
         0: .line 259
            iload 3 /* offset */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketFrameSize:I
            iadd
            istore 5 /* end */
        start local 5 // int end
         1: .line 261
            iload 5 /* end */
            aload 2 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            if_icmplt 5
         2: .line 262
            aload 2 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            istore 5 /* end */
         3: .line 263
            iconst_1
            istore 6 /* isFinal */
        start local 6 // boolean isFinal
         4: .line 264
            goto 6
        end local 6 // boolean isFinal
         5: .line 265
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 6 /* isFinal */
        start local 6 // boolean isFinal
         6: .line 267
      StackMap locals: int
      StackMap stack:
            aload 2 /* data */
            iload 3 /* offset */
            iload 5 /* end */
            invokeinterface io.vertx.core.buffer.Buffer.slice:(II)Lio/vertx/core/buffer/Buffer;
            astore 7 /* slice */
        start local 7 // io.vertx.core.buffer.Buffer slice
         7: .line 269
            iload 3 /* offset */
            ifeq 8
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.supportsContinuation:Z
            ifne 10
         8: .line 270
      StackMap locals: io.vertx.core.buffer.Buffer
      StackMap stack:
            new io.vertx.core.http.impl.ws.WebSocketFrameImpl
            dup
            aload 1 /* frameType */
            aload 7 /* slice */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            iload 6 /* isFinal */
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;Z)V
            astore 8 /* frame */
        start local 8 // io.vertx.core.http.WebSocketFrame frame
         9: .line 271
            goto 11
        end local 8 // io.vertx.core.http.WebSocketFrame frame
        10: .line 272
      StackMap locals:
      StackMap stack:
            aload 7 /* slice */
            iload 6 /* isFinal */
            invokestatic io.vertx.core.http.WebSocketFrame.continuationFrame:(Lio/vertx/core/buffer/Buffer;Z)Lio/vertx/core/http/WebSocketFrame;
            astore 8 /* frame */
        start local 8 // io.vertx.core.http.WebSocketFrame frame
        11: .line 274
      StackMap locals: io.vertx.core.http.WebSocketFrame
      StackMap stack:
            iload 3 /* offset */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.maxWebSocketFrameSize:I
            iadd
            istore 9 /* newOffset */
        start local 9 // int newOffset
        12: .line 275
            iload 6 /* isFinal */
            ifeq 15
        13: .line 276
            aload 0 /* this */
            aload 8 /* frame */
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            pop
        14: .line 277
            goto 17
        15: .line 278
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 8 /* frame */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
            pop
        16: .line 279
            aload 0 /* this */
            aload 1 /* frameType */
            aload 2 /* data */
            iload 9 /* newOffset */
            aload 4 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writePartialMessage:(Lio/vertx/core/http/impl/FrameType;Lio/vertx/core/buffer/Buffer;ILio/vertx/core/Handler;)V
        17: .line 281
      StackMap locals:
      StackMap stack:
            return
        end local 9 // int newOffset
        end local 8 // io.vertx.core.http.WebSocketFrame frame
        end local 7 // io.vertx.core.buffer.Buffer slice
        end local 6 // boolean isFinal
        end local 5 // int end
        end local 4 // io.vertx.core.Handler handler
        end local 3 // int offset
        end local 2 // io.vertx.core.buffer.Buffer data
        end local 1 // io.vertx.core.http.impl.FrameType frameType
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0   18     1  frameType  Lio/vertx/core/http/impl/FrameType;
            0   18     2       data  Lio/vertx/core/buffer/Buffer;
            0   18     3     offset  I
            0   18     4    handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1   18     5        end  I
            4    5     6    isFinal  Z
            6   18     6    isFinal  Z
            7   18     7      slice  Lio/vertx/core/buffer/Buffer;
            9   10     8      frame  Lio/vertx/core/http/WebSocketFrame;
           11   18     8      frame  Lio/vertx/core/http/WebSocketFrame;
           12   18     9  newOffset  I
    Signature: (Lio/vertx/core/http/impl/FrameType;Lio/vertx/core/buffer/Buffer;ILio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
           Name  Flags
      frameType  
      data       
      offset     
      handler    

  private void writeBinaryFrameInternal(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.buffer.Buffer data
         0: .line 284
            aload 1 /* data */
            invokeinterface io.vertx.core.buffer.Buffer.getByteBuf:()Lio/netty/buffer/ByteBuf;
            astore 2 /* buf */
        start local 2 // io.netty.buffer.ByteBuf buf
         1: .line 285
            new io.vertx.core.http.impl.ws.WebSocketFrameImpl
            dup
            getstatic io.vertx.core.http.impl.FrameType.BINARY:Lio/vertx/core/http/impl/FrameType;
            aload 2 /* buf */
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;)V
            astore 3 /* frame */
        start local 3 // io.vertx.core.http.WebSocketFrame frame
         2: .line 286
            aload 0 /* this */
            aload 3 /* frame */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
            pop
         3: .line 287
            return
        end local 3 // io.vertx.core.http.WebSocketFrame frame
        end local 2 // io.netty.buffer.ByteBuf buf
        end local 1 // io.vertx.core.buffer.Buffer data
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    4     1   data  Lio/vertx/core/buffer/Buffer;
            1    4     2    buf  Lio/netty/buffer/ByteBuf;
            2    4     3  frame  Lio/vertx/core/http/WebSocketFrame;
    MethodParameters:
      Name  Flags
      data  

  private void writeTextFrameInternal(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.String str
         0: .line 290
            new io.vertx.core.http.impl.ws.WebSocketFrameImpl
            dup
            aload 1 /* str */
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Ljava/lang/String;)V
            astore 2 /* frame */
        start local 2 // io.vertx.core.http.WebSocketFrame frame
         1: .line 291
            aload 0 /* this */
            aload 2 /* frame */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
            pop
         2: .line 292
            return
        end local 2 // io.vertx.core.http.WebSocketFrame frame
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    3     1    str  Ljava/lang/String;
            1    3     2  frame  Lio/vertx/core/http/WebSocketFrame;
    MethodParameters:
      Name  Flags
      str   

  public S writeFrame(io.vertx.core.http.WebSocketFrame);
    descriptor: (Lio/vertx/core/http/WebSocketFrame;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.http.WebSocketFrame frame
         0: .line 296
            aload 0 /* this */
            aload 1 /* frame */
            aconst_null
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeFrame:(Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
        end local 1 // io.vertx.core.http.WebSocketFrame frame
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1  frame  Lio/vertx/core/http/WebSocketFrame;
    Signature: (Lio/vertx/core/http/WebSocketFrame;)TS;
    MethodParameters:
       Name  Flags
      frame  

  public S writeFrame(io.vertx.core.http.WebSocketFrame, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.http.WebSocketFrame frame
        start local 2 // io.vertx.core.Handler handler
         0: .line 300
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         1: .line 301
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 302
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            aload 1 /* frame */
            checkcast io.vertx.core.http.impl.ws.WebSocketFrameInternal
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.length:()I
            i2l
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.reportBytesWritten:(J)V
         3: .line 303
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            aload 1 /* frame */
            checkcast io.vertx.core.http.impl.ws.WebSocketFrameImpl
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.encodeFrame:(Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;)Lio/netty/handler/codec/http/websocketx/WebSocketFrame;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.toPromise:(Lio/vertx/core/Handler;)Lio/netty/channel/ChannelPromise;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.writeToChannel:(Ljava/lang/Object;Lio/netty/channel/ChannelPromise;)V
         4: .line 300
            aload 3
            monitorexit
         5: goto 8
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.http.WebSocketFrame io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
         6: aload 3
            monitorexit
         7: athrow
         8: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.http.WebSocketFrame frame
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    9     1    frame  Lio/vertx/core/http/WebSocketFrame;
            0    9     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/http/WebSocketFrame;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)TS;
    MethodParameters:
         Name  Flags
      frame    
      handler  

  void checkClosed();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 309
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 1
            monitorenter
         1: .line 310
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.closed:Z
            ifeq 3
         2: .line 311
            new java.lang.IllegalStateException
            dup
            ldc "WebSocket is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 309
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 1
            monitorexit
         4: goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 314
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public boolean isClosed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 317
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 1
            monitorenter
         1: .line 318
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.closed:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 317
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  void handleFrame(io.vertx.core.http.impl.ws.WebSocketFrameInternal);
    descriptor: (Lio/vertx/core/http/impl/ws/WebSocketFrameInternal;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.http.impl.ws.WebSocketFrameInternal frame
         0: .line 323
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 324
            aload 1 /* frame */
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.type:()Lio/vertx/core/http/impl/FrameType;
            getstatic io.vertx.core.http.impl.FrameType.CLOSE:Lio/vertx/core/http/impl/FrameType;
            if_acmpeq 5
         2: .line 325
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            aload 1 /* frame */
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.length:()I
            i2l
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.reportBytesRead:(J)V
         3: .line 326
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            aload 1 /* frame */
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.binaryData:()Lio/vertx/core/buffer/Buffer;
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.write:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 327
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.doPause:()V
         5: .line 330
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            invokestatic io.vertx.core.http.impl.WebSocketImplBase.$SWITCH_TABLE$io$vertx$core$http$impl$FrameType:()[I
            aload 1 /* frame */
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.type:()Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iaload
            tableswitch { // 1 - 6
                    1: 9
                    2: 9
                    3: 9
                    4: 9
                    5: 11
                    6: 6
              default: 11
          }
         6: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pongHandler:Lio/vertx/core/Handler;
            ifnull 11
         7: .line 333
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pongHandler:Lio/vertx/core/Handler;
            aload 1 /* frame */
            invokeinterface io.vertx.core.http.impl.ws.WebSocketFrameInternal.binaryData:()Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         8: .line 335
            goto 11
         9: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            ifnull 11
        10: .line 341
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            aload 1 /* frame */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        11: .line 323
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 346
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.http.impl.ws.WebSocketFrameInternal frame
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0   16     1  frame  Lio/vertx/core/http/impl/ws/WebSocketFrameInternal;
      Exception table:
        from    to  target  type
           1    12      13  any
          13    14      13  any
    MethodParameters:
       Name  Flags
      frame  

  public S frameHandler(io.vertx.core.Handler<io.vertx.core.http.WebSocketFrame>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 425
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 426
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 427
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
         3: .line 428
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 425
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/http/WebSocketFrame;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/WebSocketFrame;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.WebSocketBase textMessageHandler(io.vertx.core.Handler<java.lang.String>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 434
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 435
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 436
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lio/vertx/core/http/impl/WebSocketImplBase$FrameAggregator;
            if_acmpeq 4
         3: .line 437
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            new io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator.<init>:(Lio/vertx/core/http/impl/WebSocketImplBase;)V
            putfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
         4: .line 439
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            checkcast io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator.textMessageHandler:Lio/vertx/core/Handler;
         5: .line 440
            aload 0 /* this */
            aload 2
            monitorexit
         6: areturn
         7: .line 434
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    9     1  handler  Lio/vertx/core/Handler<Ljava/lang/String;>;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/String;>;)Lio/vertx/core/http/WebSocketBase;
    MethodParameters:
         Name  Flags
      handler  

  public S binaryMessageHandler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 446
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 447
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 448
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lio/vertx/core/http/impl/WebSocketImplBase$FrameAggregator;
            if_acmpeq 4
         3: .line 449
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            new io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator.<init>:(Lio/vertx/core/http/impl/WebSocketImplBase;)V
            putfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
         4: .line 451
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.frameHandler:Lio/vertx/core/Handler;
            checkcast io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator.binaryMessageHandler:Lio/vertx/core/Handler;
         5: .line 452
            aload 0 /* this */
            aload 2
            monitorexit
         6: areturn
         7: .line 446
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    9     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.http.WebSocketBase pongHandler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 458
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 459
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 460
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.pongHandler:Lio/vertx/core/Handler;
         3: .line 461
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 458
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/http/WebSocketBase;
    MethodParameters:
         Name  Flags
      handler  

  void handleDrained();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 466
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.drainHandler:Lio/vertx/core/Handler;
            ifnull 4
         1: .line 467
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.drainHandler:Lio/vertx/core/Handler;
            astore 1 /* dh */
        start local 1 // io.vertx.core.Handler dh
         2: .line 468
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.drainHandler:Lio/vertx/core/Handler;
         3: .line 469
            aload 1 /* dh */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 1 // io.vertx.core.Handler dh
         4: .line 471
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            2    4     1    dh  Lio/vertx/core/Handler<Ljava/lang/Void;>;

  void handleException(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.Throwable t
         0: .line 474
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 475
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 3
         2: .line 476
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.exceptionHandler:Lio/vertx/core/Handler;
            aload 1 /* t */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 474
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 2
            monitorexit
         4: goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
         7: .line 479
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    8     1     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
      Name  Flags
      t     

  void handleClosed();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 482
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.unregisterHandlers:()V
         1: .line 485
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         2: .line 486
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.isPaused:()Z
            ifeq 3
            aconst_null
            goto 4
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase top top io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
         3: aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.endHandler:Lio/vertx/core/Handler;
      StackMap locals:
      StackMap stack: io.vertx.core.Handler
         4: astore 1 /* endHandler */
        start local 1 // io.vertx.core.Handler endHandler
         5: .line 487
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.closeHandler:Lio/vertx/core/Handler;
            astore 2 /* closeHandler */
        start local 2 // io.vertx.core.Handler closeHandler
         6: .line 488
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.http.impl.WebSocketImplBase.closed:Z
         7: .line 489
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         8: .line 490
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         9: .line 485
            aload 3
            monitorexit
        10: goto 13
        end local 2 // io.vertx.core.Handler closeHandler
        end local 1 // io.vertx.core.Handler endHandler
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        start local 1 // io.vertx.core.Handler endHandler
        start local 2 // io.vertx.core.Handler closeHandler
        13: .line 492
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.Handler io.vertx.core.Handler
      StackMap stack:
            aload 2 /* closeHandler */
            ifnull 15
        14: .line 493
            aload 2 /* closeHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        15: .line 495
      StackMap locals:
      StackMap stack:
            aload 1 /* endHandler */
            ifnull 17
        16: .line 496
            aload 1 /* endHandler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        17: .line 498
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler closeHandler
        end local 1 // io.vertx.core.Handler endHandler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            5   11     1    endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           13   18     1    endHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            6   11     2  closeHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
           13   18     2  closeHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           2    10      11  any
          11    12      11  any

  private void unregisterHandlers();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 506
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 3
            monitorenter
         1: .line 507
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
            astore 1 /* binaryConsumer */
        start local 1 // io.vertx.core.eventbus.MessageConsumer binaryConsumer
         2: .line 508
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
            astore 2 /* textConsumer */
        start local 2 // io.vertx.core.eventbus.MessageConsumer textConsumer
         3: .line 509
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.binaryHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         4: .line 510
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.textHandlerRegistration:Lio/vertx/core/eventbus/MessageConsumer;
         5: .line 506
            aload 3
            monitorexit
         6: goto 9
        end local 2 // io.vertx.core.eventbus.MessageConsumer textConsumer
        end local 1 // io.vertx.core.eventbus.MessageConsumer binaryConsumer
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase top top io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
        start local 1 // io.vertx.core.eventbus.MessageConsumer binaryConsumer
        start local 2 // io.vertx.core.eventbus.MessageConsumer textConsumer
         9: .line 512
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.eventbus.MessageConsumer io.vertx.core.eventbus.MessageConsumer
      StackMap stack:
            aload 1 /* binaryConsumer */
            ifnull 11
        10: .line 513
            aload 1 /* binaryConsumer */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.unregister:()V
        11: .line 515
      StackMap locals:
      StackMap stack:
            aload 2 /* textConsumer */
            ifnull 13
        12: .line 516
            aload 2 /* textConsumer */
            invokeinterface io.vertx.core.eventbus.MessageConsumer.unregister:()V
        13: .line 518
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.eventbus.MessageConsumer textConsumer
        end local 1 // io.vertx.core.eventbus.MessageConsumer binaryConsumer
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   14     0            this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            2    7     1  binaryConsumer  Lio/vertx/core/eventbus/MessageConsumer;
            9   14     1  binaryConsumer  Lio/vertx/core/eventbus/MessageConsumer;
            3    7     2    textConsumer  Lio/vertx/core/eventbus/MessageConsumer;
            9   14     2    textConsumer  Lio/vertx/core/eventbus/MessageConsumer;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any

  synchronized void setMetric(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // java.lang.Object metric
         0: .line 521
            aload 0 /* this */
            aload 1 /* metric */
            putfield io.vertx.core.http.impl.WebSocketImplBase.metric:Ljava/lang/Object;
         1: .line 522
            return
        end local 1 // java.lang.Object metric
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  metric  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      metric  

  synchronized java.lang.Object getMetric();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 525
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.metric:Ljava/lang/Object;
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  public S handler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 530
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 531
            aload 1 /* handler */
            ifnull 3
         2: .line 532
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         3: .line 534
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            aload 1 /* handler */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/impl/InboundBuffer;
            pop
         4: .line 535
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 530
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         7: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    8     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public S endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 541
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 542
            aload 1 /* handler */
            ifnull 3
         2: .line 543
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         3: .line 545
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.endHandler:Lio/vertx/core/Handler;
         4: .line 546
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 541
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         7: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public S exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 552
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 553
            aload 1 /* handler */
            ifnull 3
         2: .line 554
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         3: .line 556
      StackMap locals: io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack:
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.exceptionHandler:Lio/vertx/core/Handler;
         4: .line 557
            aload 0 /* this */
            aload 2
            monitorexit
         5: areturn
         6: .line 552
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         7: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    8     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public S closeHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 563
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 564
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 565
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.closeHandler:Lio/vertx/core/Handler;
         3: .line 566
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 563
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public S drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 572
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 573
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 574
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.WebSocketImplBase.drainHandler:Lio/vertx/core/Handler;
         3: .line 575
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 572
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase io.vertx.core.Handler io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)TS;
    MethodParameters:
         Name  Flags
      handler  

  public S pause();
    descriptor: ()Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 581
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.isClosed:()Z
            ifne 2
         1: .line 582
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.pause:()Lio/vertx/core/streams/impl/InboundBuffer;
            pop
         2: .line 584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
    Signature: ()TS;

  public S resume();
    descriptor: ()Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 589
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 590
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.isClosed:()Z
            ifeq 8
         2: .line 591
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.endHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         3: .line 592
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.WebSocketImplBase.endHandler:Lio/vertx/core/Handler;
         4: .line 593
            aload 2 /* handler */
            ifnull 9
         5: .line 594
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.getContext:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* ctx */
        start local 3 // io.vertx.core.impl.ContextInternal ctx
         6: .line 595
            aload 3 /* ctx */
            aload 2 /* handler */
            invokedynamic handle(Lio/vertx/core/Handler;)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/WebSocketImplBase.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
        end local 3 // io.vertx.core.impl.ContextInternal ctx
        end local 2 // io.vertx.core.Handler handler
         7: .line 597
            goto 9
         8: .line 598
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.resume:()Z
            pop
         9: .line 589
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
        10: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 1
            monitorexit
        12: athrow
        13: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            3    7     2  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
            6    7     3      ctx  Lio/vertx/core/impl/ContextInternal;
      Exception table:
        from    to  target  type
           1    10      11  any
          11    12      11  any
    Signature: ()TS;

  public S fetch();
    descriptor: (J)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // long amount
         0: .line 606
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.isClosed:()Z
            ifne 2
         1: .line 607
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.pending:Lio/vertx/core/streams/impl/InboundBuffer;
            lload 1 /* amount */
            invokevirtual io.vertx.core.streams.impl.InboundBuffer.fetch:(J)Z
            pop
         2: .line 609
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    3     1  amount  J
    Signature: (J)TS;
    MethodParameters:
        Name  Flags
      amount  

  public S setWriteQueueMaxSize();
    descriptor: (I)Lio/vertx/core/http/WebSocketBase;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // int maxSize
         0: .line 614
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            dup
            astore 2
            monitorenter
         1: .line 615
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.checkClosed:()V
         2: .line 616
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketImplBase.conn:Lio/vertx/core/http/impl/Http1xConnectionBase;
            iload 1 /* maxSize */
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.doSetWriteQueueMaxSize:(I)V
         3: .line 617
            aload 0 /* this */
            aload 2
            monitorexit
         4: areturn
         5: .line 614
      StackMap locals: io.vertx.core.http.impl.WebSocketImplBase int io.vertx.core.http.impl.Http1xConnectionBase
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // int maxSize
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    7     1  maxSize  I
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Signature: (I)TS;
    MethodParameters:
         Name  Flags
      maxSize  

  public void end();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
         0: .line 623
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:()V
         1: .line 624
            return
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;

  public void end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.Handler handler
         0: .line 628
            aload 0 /* this */
            aload 1 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.close:(Lio/vertx/core/Handler;)V
         1: .line 629
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.streams.ReadStream pause();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    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.WebSocketImplBase.pause:()Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public io.vertx.core.streams.ReadStream endHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    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.WebSocketImplBase.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

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

  public io.vertx.core.streams.WriteStream write(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.write:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/streams/WriteStream;
    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.WebSocketImplBase.setWriteQueueMaxSize:(I)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream resume();
    descriptor: ()Lio/vertx/core/streams/ReadStream;
    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.WebSocketImplBase.resume:()Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream fetch(long);
    descriptor: (J)Lio/vertx/core/streams/ReadStream;
    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.WebSocketImplBase.fetch:(J)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    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.WebSocketImplBase.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.ReadStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
    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.WebSocketImplBase.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    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.WebSocketImplBase.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream drainHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    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.WebSocketImplBase.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/WebSocketBase;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static int[] $SWITCH_TABLE$io$vertx$core$http$impl$FrameType();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 44
            getstatic io.vertx.core.http.impl.WebSocketImplBase.$SWITCH_TABLE$io$vertx$core$http$impl$FrameType:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic io.vertx.core.http.impl.FrameType.values:()[Lio/vertx/core/http/impl/FrameType;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic io.vertx.core.http.impl.FrameType.BINARY:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic io.vertx.core.http.impl.FrameType.CLOSE:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iconst_4
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic io.vertx.core.http.impl.FrameType.CONTINUATION:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iconst_1
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic io.vertx.core.http.impl.FrameType.PING:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iconst_5
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic io.vertx.core.http.impl.FrameType.PONG:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            bipush 6
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            getstatic io.vertx.core.http.impl.FrameType.TEXT:Lio/vertx/core/http/impl/FrameType;
            invokevirtual io.vertx.core.http.impl.FrameType.ordinal:()I
            iconst_2
            iastore
        18: goto 20
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        19: pop
      StackMap locals:
      StackMap stack:
        20: aload 0
            dup
            putstatic io.vertx.core.http.impl.WebSocketImplBase.$SWITCH_TABLE$io$vertx$core$http$impl$FrameType:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
          17    18      19  Class java.lang.NoSuchFieldError

  private static void lambda$0(io.vertx.core.http.impl.Http1xConnectionBase, java.lang.Void);
    descriptor: (Lio/vertx/core/http/impl/Http1xConnectionBase;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 78
            aload 0
            invokevirtual io.vertx.core.http.impl.Http1xConnectionBase.doResume:()V
         1: .line 79
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;

  private void lambda$1(io.vertx.core.eventbus.Message);
    descriptor: (Lio/vertx/core/eventbus/Message;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.eventbus.Message msg
         0: .line 83
            aload 0 /* this */
            aload 1 /* msg */
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeBinaryFrameInternal:(Lio/vertx/core/buffer/Buffer;)V
            return
        end local 1 // io.vertx.core.eventbus.Message msg
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1   msg  Lio/vertx/core/eventbus/Message<Lio/vertx/core/buffer/Buffer;>;

  private void lambda$2(io.vertx.core.eventbus.Message);
    descriptor: (Lio/vertx/core/eventbus/Message;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.WebSocketImplBase this
        start local 1 // io.vertx.core.eventbus.Message msg
         0: .line 84
            aload 0 /* this */
            aload 1 /* msg */
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual io.vertx.core.http.impl.WebSocketImplBase.writeTextFrameInternal:(Ljava/lang/String;)V
            return
        end local 1 // io.vertx.core.eventbus.Message msg
        end local 0 // io.vertx.core.http.impl.WebSocketImplBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/WebSocketImplBase<TS;>;
            0    1     1   msg  Lio/vertx/core/eventbus/Message<Ljava/lang/String;>;

  private static void lambda$3(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 595
            aload 0
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;
}
Signature: <S::Lio/vertx/core/http/WebSocketBase;>Ljava/lang/Object;Lio/vertx/core/http/WebSocketBase;
SourceFile: "WebSocketImplBase.java"
NestMembers:
  io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator
InnerClasses:
  private FrameAggregator = io.vertx.core.http.impl.WebSocketImplBase$FrameAggregator of io.vertx.core.http.impl.WebSocketImplBase
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles