public class io.vertx.core.http.impl.ws.WebSocketFrameImpl implements io.vertx.core.http.impl.ws.WebSocketFrameInternal, io.netty.util.ReferenceCounted
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.http.impl.ws.WebSocketFrameImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.http.impl.FrameType type;
    descriptor: Lio/vertx/core/http/impl/FrameType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isFinalFrame;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.netty.buffer.ByteBuf binaryData;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0002) ACC_PRIVATE

  private boolean closeParsed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private short closeStatusCode;
    descriptor: S
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 45
            aload 0 /* this */
            aconst_null
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            iconst_1
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;Z)V
         1: .line 46
            return
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public void <init>(io.vertx.core.http.impl.FrameType);
    descriptor: (Lio/vertx/core/http/impl/FrameType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // io.vertx.core.http.impl.FrameType frameType
         0: .line 52
            aload 0 /* this */
            aload 1 /* frameType */
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            iconst_1
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;Z)V
         1: .line 53
            return
        end local 1 // io.vertx.core.http.impl.FrameType frameType
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    2     1  frameType  Lio/vertx/core/http/impl/FrameType;
    MethodParameters:
           Name  Flags
      frameType  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // java.lang.String textData
         0: .line 59
            aload 0 /* this */
            aload 1 /* textData */
            iconst_1
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Ljava/lang/String;Z)V
         1: .line 60
            return
        end local 1 // java.lang.String textData
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    2     1  textData  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      textData  

  public void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // java.lang.String textData
        start local 2 // boolean isFinalFrame
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeParsed:Z
         2: .line 66
            aload 0 /* this */
            getstatic io.vertx.core.http.impl.FrameType.TEXT:Lio/vertx/core/http/impl/FrameType;
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
         3: .line 67
            aload 0 /* this */
            iload 2 /* isFinalFrame */
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.isFinalFrame:Z
         4: .line 68
            aload 0 /* this */
            aload 1 /* textData */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokestatic io.netty.buffer.Unpooled.copiedBuffer:(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
         5: .line 69
            return
        end local 2 // boolean isFinalFrame
        end local 1 // java.lang.String textData
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    6     1      textData  Ljava/lang/String;
            0    6     2  isFinalFrame  Z
    MethodParameters:
              Name  Flags
      textData      
      isFinalFrame  

  public void <init>(io.vertx.core.http.impl.FrameType, io.netty.buffer.ByteBuf);
    descriptor: (Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // io.vertx.core.http.impl.FrameType type
        start local 2 // io.netty.buffer.ByteBuf binaryData
         0: .line 81
            aload 0 /* this */
            aload 1 /* type */
            aload 2 /* binaryData */
            iconst_1
            invokespecial io.vertx.core.http.impl.ws.WebSocketFrameImpl.<init>:(Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;Z)V
         1: .line 82
            return
        end local 2 // io.netty.buffer.ByteBuf binaryData
        end local 1 // io.vertx.core.http.impl.FrameType type
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    2     1        type  Lio/vertx/core/http/impl/FrameType;
            0    2     2  binaryData  Lio/netty/buffer/ByteBuf;
    MethodParameters:
            Name  Flags
      type        
      binaryData  

  public void <init>(io.vertx.core.http.impl.FrameType, io.netty.buffer.ByteBuf, boolean);
    descriptor: (Lio/vertx/core/http/impl/FrameType;Lio/netty/buffer/ByteBuf;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // io.vertx.core.http.impl.FrameType type
        start local 2 // io.netty.buffer.ByteBuf binaryData
        start local 3 // boolean isFinalFrame
         0: .line 94
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeParsed:Z
         2: .line 95
            aload 0 /* this */
            aload 1 /* type */
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
         3: .line 96
            aload 0 /* this */
            iload 3 /* isFinalFrame */
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.isFinalFrame:Z
         4: .line 97
            aload 0 /* this */
            aload 2 /* binaryData */
            invokestatic io.netty.buffer.Unpooled.unreleasableBuffer:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
         5: .line 98
            return
        end local 3 // boolean isFinalFrame
        end local 2 // io.netty.buffer.ByteBuf binaryData
        end local 1 // io.vertx.core.http.impl.FrameType type
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    6     1          type  Lio/vertx/core/http/impl/FrameType;
            0    6     2    binaryData  Lio/netty/buffer/ByteBuf;
            0    6     3  isFinalFrame  Z
    MethodParameters:
              Name  Flags
      type          
      binaryData    
      isFinalFrame  

  public boolean isText();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 101
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            getstatic io.vertx.core.http.impl.FrameType.TEXT:Lio/vertx/core/http/impl/FrameType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public boolean isBinary();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 105
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            getstatic io.vertx.core.http.impl.FrameType.BINARY:Lio/vertx/core/http/impl/FrameType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public boolean isContinuation();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 109
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            getstatic io.vertx.core.http.impl.FrameType.CONTINUATION:Lio/vertx/core/http/impl/FrameType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public boolean isClose();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 112
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            getstatic io.vertx.core.http.impl.FrameType.CLOSE:Lio/vertx/core/http/impl/FrameType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.netty.buffer.ByteBuf getBinaryData();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public java.lang.String textData();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 119
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.getBinaryData:()Lio/netty/buffer/ByteBuf;
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.vertx.core.buffer.Buffer binaryData();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 123
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Lio/netty/buffer/ByteBuf;)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public void setBinaryData(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // io.netty.buffer.ByteBuf binaryData
         0: .line 127
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            ifnull 2
         1: .line 128
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         2: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* binaryData */
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
         3: .line 131
            return
        end local 1 // io.netty.buffer.ByteBuf binaryData
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    4     1  binaryData  Lio/netty/buffer/ByteBuf;
    MethodParameters:
            Name  Flags
      binaryData  

  public void setTextData(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // java.lang.String textData
         0: .line 134
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            ifnull 2
         1: .line 135
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         2: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* textData */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokestatic io.netty.buffer.Unpooled.copiedBuffer:(Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
         3: .line 138
            return
        end local 1 // java.lang.String textData
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    4     1  textData  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      textData  

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 142
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 147
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 148
            ldc "(type: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "data: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.getBinaryData:()Lio/netty/buffer/ByteBuf;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         2: .line 147
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public int refCnt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 153
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.refCnt:()I
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.netty.util.ReferenceCounted retain();
    descriptor: ()Lio/netty/util/ReferenceCounted;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 158
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.retain:()Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.netty.util.ReferenceCounted retain(int);
    descriptor: (I)Lio/netty/util/ReferenceCounted;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // int increment
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            iload 1 /* increment */
            invokevirtual io.netty.buffer.ByteBuf.retain:(I)Lio/netty/buffer/ByteBuf;
            areturn
        end local 1 // int increment
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    1     1  increment  I
    MethodParameters:
           Name  Flags
      increment  

  public boolean release();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 168
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public boolean release(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // int decrement
         0: .line 173
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            iload 1 /* decrement */
            invokevirtual io.netty.buffer.ByteBuf.release:(I)Z
            ireturn
        end local 1 // int decrement
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    1     1  decrement  I
    MethodParameters:
           Name  Flags
      decrement  

  public io.netty.util.ReferenceCounted touch();
    descriptor: ()Lio/netty/util/ReferenceCounted;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 178
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.touch:()Lio/netty/buffer/ByteBuf;
            pop
         1: .line 179
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.netty.util.ReferenceCounted touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
        start local 1 // java.lang.Object hint
         0: .line 184
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            aload 1 /* hint */
            invokevirtual io.netty.buffer.ByteBuf.touch:(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 185
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object hint
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            0    2     1  hint  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      hint  

  public boolean isFinal();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 190
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.isFinalFrame:Z
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  private void parseCloseFrame();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 194
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.length:()I
            istore 1 /* length */
        start local 1 // int length
         1: .line 195
            iload 1 /* length */
            iconst_2
            if_icmpge 5
         2: .line 196
            aload 0 /* this */
            sipush 1000
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeStatusCode:S
         3: .line 197
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeReason:Ljava/lang/String;
         4: .line 198
            goto 11
         5: .line 199
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            istore 2 /* index */
        start local 2 // int index
         6: .line 200
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            iload 2 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeStatusCode:S
         7: .line 201
            iload 1 /* length */
            iconst_2
            if_icmpne 10
         8: .line 202
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeReason:Ljava/lang/String;
         9: .line 203
            goto 11
        10: .line 204
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.binaryData:Lio/netty/buffer/ByteBuf;
            iload 2 /* index */
            iconst_2
            iadd
            iload 1 /* length */
            iconst_2
            isub
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.netty.buffer.ByteBuf.toString:(IILjava/nio/charset/Charset;)Ljava/lang/String;
            putfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeReason:Ljava/lang/String;
        end local 2 // int index
        11: .line 207
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
            1   12     1  length  I
            6   11     2   index  I

  private void checkClose();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 210
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.isClose:()Z
            ifne 2
         1: .line 211
            new java.lang.IllegalStateException
            dup
            ldc "This should be a close frame"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 212
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public short closeStatusCode();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 216
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.checkClose:()V
         1: .line 217
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeParsed:Z
            ifne 3
         2: .line 218
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.parseCloseFrame:()V
         3: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeStatusCode:S
            ireturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public java.lang.String closeReason();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 224
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.checkClose:()V
         1: .line 225
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeParsed:Z
            ifne 3
         2: .line 226
            aload 0 /* this */
            invokevirtual io.vertx.core.http.impl.ws.WebSocketFrameImpl.parseCloseFrame:()V
         3: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.closeReason:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;

  public io.vertx.core.http.impl.FrameType type();
    descriptor: ()Lio/vertx/core/http/impl/FrameType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
         0: .line 232
            aload 0 /* this */
            getfield io.vertx.core.http.impl.ws.WebSocketFrameImpl.type:Lio/vertx/core/http/impl/FrameType;
            areturn
        end local 0 // io.vertx.core.http.impl.ws.WebSocketFrameImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/http/impl/ws/WebSocketFrameImpl;
}
SourceFile: "WebSocketFrameImpl.java"