public class io.vertx.core.parsetools.impl.RecordParserImpl implements io.vertx.core.parsetools.RecordParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.parsetools.impl.RecordParserImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.buffer.Buffer EMPTY_BUFFER;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private io.vertx.core.buffer.Buffer buff;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

  private int pos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int start;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int delimPos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private byte[] delim;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int recordSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int maxRecordSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private long demand;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.Handler<io.vertx.core.buffer.Buffer> eventHandler;
    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> endHandler;
    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 final io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer> stream;
    descriptor: Lio/vertx/core/streams/ReadStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Lio/netty/buffer/ByteBuf;)Lio/vertx/core/buffer/Buffer;
            putstatic io.vertx.core.parsetools.impl.RecordParserImpl.EMPTY_BUFFER:Lio/vertx/core/buffer/Buffer;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/streams/ReadStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.streams.ReadStream stream
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            getstatic io.vertx.core.parsetools.impl.RecordParserImpl.EMPTY_BUFFER:Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
         2: .line 41
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
         3: .line 49
            aload 0 /* this */
            aload 1 /* stream */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
         4: .line 50
            return
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    5     1  stream  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;)V
    MethodParameters:
        Name  Flags
      stream  

  public void setOutput(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.Handler output
         0: .line 53
            aload 1 /* output */
            ldc "output"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 54
            aload 0 /* this */
            aload 1 /* output */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.eventHandler:Lio/vertx/core/Handler;
         2: .line 55
            return
        end local 1 // io.vertx.core.Handler output
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    3     1  output  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)V
    MethodParameters:
        Name  Flags
      output  

  public static io.vertx.core.buffer.Buffer latin1StringToBytes(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // java.lang.String str
         0: .line 65
            aload 0 /* str */
            invokevirtual java.lang.String.length:()I
            newarray 8
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         1: .line 66
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 6
         3: .line 67
      StackMap locals: byte[] int
      StackMap stack:
            aload 0 /* str */
            iload 2 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 3 /* c */
        start local 3 // char c
         4: .line 68
            aload 1 /* bytes */
            iload 2 /* i */
            iload 3 /* c */
            sipush 255
            iand
            i2b
            bastore
        end local 3 // char c
         5: .line 66
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* str */
            invokevirtual java.lang.String.length:()I
            if_icmplt 3
        end local 2 // int i
         7: .line 70
            aload 1 /* bytes */
            invokestatic io.vertx.core.buffer.Buffer.buffer:([B)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 1 // byte[] bytes
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0    str  Ljava/lang/String;
            1    8     1  bytes  [B
            2    7     2      i  I
            4    5     3      c  C
    MethodParameters:
      Name  Flags
      str   

  public static io.vertx.core.parsetools.RecordParser newDelimited(java.lang.String, io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>, io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/streams/ReadStream;Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.lang.String delim
        start local 1 // io.vertx.core.streams.ReadStream stream
        start local 2 // io.vertx.core.Handler output
         0: .line 83
            aload 0 /* delim */
            invokestatic io.vertx.core.parsetools.impl.RecordParserImpl.latin1StringToBytes:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            aload 1 /* stream */
            aload 2 /* output */
            invokestatic io.vertx.core.parsetools.impl.RecordParserImpl.newDelimited:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/streams/ReadStream;Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            areturn
        end local 2 // io.vertx.core.Handler output
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // java.lang.String delim
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0   delim  Ljava/lang/String;
            0    1     1  stream  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
            0    1     2  output  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/parsetools/RecordParser;
    MethodParameters:
        Name  Flags
      delim   
      stream  
      output  

  public static io.vertx.core.parsetools.RecordParser newDelimited(io.vertx.core.buffer.Buffer, io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>, io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/streams/ReadStream;Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.Buffer delim
        start local 1 // io.vertx.core.streams.ReadStream stream
        start local 2 // io.vertx.core.Handler output
         0: .line 96
            new io.vertx.core.parsetools.impl.RecordParserImpl
            dup
            aload 1 /* stream */
            invokespecial io.vertx.core.parsetools.impl.RecordParserImpl.<init>:(Lio/vertx/core/streams/ReadStream;)V
            astore 3 /* ls */
        start local 3 // io.vertx.core.parsetools.impl.RecordParserImpl ls
         1: .line 97
            aload 3 /* ls */
            aload 2 /* output */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            pop
         2: .line 98
            aload 3 /* ls */
            aload 0 /* delim */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.delimitedMode:(Lio/vertx/core/buffer/Buffer;)V
         3: .line 99
            aload 3 /* ls */
            areturn
        end local 3 // io.vertx.core.parsetools.impl.RecordParserImpl ls
        end local 2 // io.vertx.core.Handler output
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // io.vertx.core.buffer.Buffer delim
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   delim  Lio/vertx/core/buffer/Buffer;
            0    4     1  stream  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
            0    4     2  output  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
            1    4     3      ls  Lio/vertx/core/parsetools/impl/RecordParserImpl;
    Signature: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/parsetools/RecordParser;
    MethodParameters:
        Name  Flags
      delim   
      stream  
      output  

  public static io.vertx.core.parsetools.RecordParser newFixed(int, io.vertx.core.streams.ReadStream<io.vertx.core.buffer.Buffer>, io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (ILio/vertx/core/streams/ReadStream;Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // int size
        start local 1 // io.vertx.core.streams.ReadStream stream
        start local 2 // io.vertx.core.Handler output
         0: .line 112
            iload 0 /* size */
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Size must be > 0"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 113
            new io.vertx.core.parsetools.impl.RecordParserImpl
            dup
            aload 1 /* stream */
            invokespecial io.vertx.core.parsetools.impl.RecordParserImpl.<init>:(Lio/vertx/core/streams/ReadStream;)V
            astore 3 /* ls */
        start local 3 // io.vertx.core.parsetools.impl.RecordParserImpl ls
         4: .line 114
            aload 3 /* ls */
            aload 2 /* output */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            pop
         5: .line 115
            aload 3 /* ls */
            iload 0 /* size */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.fixedSizeMode:(I)V
         6: .line 116
            aload 3 /* ls */
            areturn
        end local 3 // io.vertx.core.parsetools.impl.RecordParserImpl ls
        end local 2 // io.vertx.core.Handler output
        end local 1 // io.vertx.core.streams.ReadStream stream
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    size  I
            0    7     1  stream  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
            0    7     2  output  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
            4    7     3      ls  Lio/vertx/core/parsetools/impl/RecordParserImpl;
    Signature: (ILio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/parsetools/RecordParser;
    MethodParameters:
        Name  Flags
      size    
      stream  
      output  

  public void delimitedMode(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // java.lang.String delim
         0: .line 128
            aload 0 /* this */
            aload 1 /* delim */
            invokestatic io.vertx.core.parsetools.impl.RecordParserImpl.latin1StringToBytes:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.delimitedMode:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 129
            return
        end local 1 // java.lang.String delim
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    2     1  delim  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      delim  

  public void delimitedMode(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.buffer.Buffer delim
         0: .line 140
            aload 1 /* delim */
            ldc "delim"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 141
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimited:Z
         2: .line 142
            aload 0 /* this */
            aload 1 /* delim */
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:()[B
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delim:[B
         3: .line 143
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
         4: .line 144
            return
        end local 1 // io.vertx.core.buffer.Buffer delim
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    5     1  delim  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
       Name  Flags
      delim  

  public void fixedSizeMode(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // int size
         0: .line 154
            iload 1 /* size */
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Size must be > 0"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 155
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimited:Z
         4: .line 156
            aload 0 /* this */
            iload 1 /* size */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.recordSize:I
         5: .line 157
            return
        end local 1 // int size
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    6     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public io.vertx.core.parsetools.RecordParser maxRecordSize(int);
    descriptor: (I)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // int size
         0: .line 169
            iload 1 /* size */
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Size must be > 0"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 170
            aload 0 /* this */
            iload 1 /* size */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.maxRecordSize:I
         4: .line 171
            aload 0 /* this */
            areturn
        end local 1 // int size
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    5     1  size  I
    MethodParameters:
      Name  Flags
      size  

  private void handleParsing();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
            lconst_0
            lcmp
            ifle 18
         1: .line 178
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimited:Z
            ifeq 4
         2: .line 179
            aload 0 /* this */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.parseDelimited:()I
            istore 1 /* next */
        start local 1 // int next
         3: .line 180
            goto 5
        end local 1 // int next
         4: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.parseFixed:()I
            istore 1 /* next */
        start local 1 // int next
         5: .line 183
      StackMap locals: int
      StackMap stack:
            iload 1 /* next */
            iconst_m1
            if_icmpne 10
         6: .line 184
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            astore 2 /* s */
        start local 2 // io.vertx.core.streams.ReadStream s
         7: .line 185
            aload 2 /* s */
            ifnull 21
         8: .line 186
            aload 2 /* s */
            invokeinterface io.vertx.core.streams.ReadStream.resume:()Lio/vertx/core/streams/ReadStream;
            pop
         9: .line 188
            goto 21
        end local 2 // io.vertx.core.streams.ReadStream s
        10: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
            ldc 9223372036854775807
            lcmp
            ifeq 12
        11: .line 191
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
            lconst_1
            lsub
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
        12: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            iload 1 /* next */
            invokeinterface io.vertx.core.buffer.Buffer.getBuffer:(II)Lio/vertx/core/buffer/Buffer;
            astore 2 /* event */
        start local 2 // io.vertx.core.buffer.Buffer event
        13: .line 194
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
        14: .line 195
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.eventHandler:Lio/vertx/core/Handler;
            astore 3 /* handler */
        start local 3 // io.vertx.core.Handler handler
        15: .line 196
            aload 3 /* handler */
            ifnull 0
        16: .line 197
            aload 3 /* handler */
            aload 2 /* event */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
        end local 3 // io.vertx.core.Handler handler
        end local 2 // io.vertx.core.buffer.Buffer event
        end local 1 // int next
        17: .line 199
            goto 0
        18: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            astore 1 /* s */
        start local 1 // io.vertx.core.streams.ReadStream s
        19: .line 202
            aload 1 /* s */
            ifnull 21
        20: .line 203
            aload 1 /* s */
            invokeinterface io.vertx.core.streams.ReadStream.pause:()Lio/vertx/core/streams/ReadStream;
            pop
        end local 1 // io.vertx.core.streams.ReadStream s
        21: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            istore 1 /* len */
        start local 1 // int len
        22: .line 209
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            iload 1 /* len */
            if_icmpne 25
        23: .line 210
            aload 0 /* this */
            getstatic io.vertx.core.parsetools.impl.RecordParserImpl.EMPTY_BUFFER:Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
        24: .line 211
            goto 26
        25: .line 212
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            iload 1 /* len */
            invokeinterface io.vertx.core.buffer.Buffer.getBuffer:(II)Lio/vertx/core/buffer/Buffer;
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
        26: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            isub
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
        27: .line 215
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
        28: .line 216
            return
        end local 1 // int len
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   29     0     this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            3    4     1     next  I
            5   17     1     next  I
            7   10     2        s  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
           13   17     2    event  Lio/vertx/core/buffer/Buffer;
           15   17     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
           19   21     1        s  Lio/vertx/core/streams/ReadStream<Lio/vertx/core/buffer/Buffer;>;
           22   29     1      len  I

  private int parseDelimited();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 219
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            istore 1 /* len */
        start local 1 // int len
         1: .line 220
            goto 12
         2: .line 221
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            invokeinterface io.vertx.core.buffer.Buffer.getByte:(I)B
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delim:[B
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
            baload
            if_icmpne 8
         3: .line 222
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
            iconst_1
            iadd
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
         4: .line 223
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delim:[B
            arraylength
            if_icmpne 11
         5: .line 224
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            iconst_1
            iadd
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
         6: .line 225
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
         7: .line 226
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delim:[B
            arraylength
            isub
            ireturn
         8: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
            ifle 11
         9: .line 230
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
            isub
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
        10: .line 231
            aload 0 /* this */
            iconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.delimPos:I
        11: .line 220
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            iconst_1
            iadd
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
            iload 1 /* len */
            if_icmplt 2
        13: .line 235
            iconst_m1
            ireturn
        end local 1 // int len
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            1   14     1   len  I

  private int parseFixed();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 239
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            istore 1 /* len */
        start local 1 // int len
         1: .line 240
            iload 1 /* len */
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            isub
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.recordSize:I
            if_icmplt 5
         2: .line 241
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.start:I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.recordSize:I
            iadd
            istore 2 /* end */
        start local 2 // int end
         3: .line 242
            aload 0 /* this */
            iload 2 /* end */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.pos:I
         4: .line 243
            iload 2 /* end */
            ireturn
        end local 2 // int end
         5: .line 245
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // int len
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            1    6     1   len  I
            3    5     2   end  I

  public void handle(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 254
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            ifne 3
         1: .line 255
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
         2: .line 256
            goto 4
         3: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            aload 1 /* buffer */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         4: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.handleParsing:()V
         5: .line 260
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            ifnull 11
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.maxRecordSize:I
            ifle 11
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.buff:Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.maxRecordSize:I
            if_icmple 11
         6: .line 261
            new java.lang.IllegalStateException
            dup
            ldc "The current record is too long"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            astore 2 /* ex */
        start local 2 // java.lang.IllegalStateException ex
         7: .line 262
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 10
         8: .line 263
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.exceptionHandler:Lio/vertx/core/Handler;
            aload 2 /* ex */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         9: .line 264
            goto 11
        10: .line 265
      StackMap locals: java.lang.IllegalStateException
      StackMap stack:
            aload 2 /* ex */
            athrow
        end local 2 // java.lang.IllegalStateException ex
        11: .line 268
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0   12     1  buffer  Lio/vertx/core/buffer/Buffer;
            7   11     2      ex  Ljava/lang/IllegalStateException;
    MethodParameters:
        Name  Flags
      buffer  

  private void end();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 271
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.endHandler:Lio/vertx/core/Handler;
            astore 1 /* handler */
        start local 1 // io.vertx.core.Handler handler
         1: .line 272
            aload 1 /* handler */
            ifnull 3
         2: .line 273
            aload 1 /* handler */
            aconst_null
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         3: .line 275
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            1    4     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;

  public io.vertx.core.parsetools.RecordParser exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 279
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.exceptionHandler:Lio/vertx/core/Handler;
         1: .line 280
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/core/parsetools/RecordParser;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.parsetools.RecordParser handler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 285
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.eventHandler:Lio/vertx/core/Handler;
         1: .line 286
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            ifnull 10
         2: .line 287
            aload 1 /* handler */
            ifnull 7
         3: .line 288
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/parsetools/impl/RecordParserImpl;)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/parsetools/impl/RecordParserImpl.lambda$0(Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         4: .line 289
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/core/parsetools/impl/RecordParserImpl;)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/parsetools/impl/RecordParserImpl.lambda$1(Ljava/lang/Throwable;)V (7)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         5: .line 294
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aload 0 /* this */
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         6: .line 295
            goto 10
         7: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         8: .line 297
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
         9: .line 298
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.stream:Lio/vertx/core/streams/ReadStream;
            aconst_null
            invokeinterface io.vertx.core.streams.ReadStream.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/streams/ReadStream;
            pop
        10: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0   11     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)Lio/vertx/core/parsetools/RecordParser;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.parsetools.RecordParser pause();
    descriptor: ()Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 306
            aload 0 /* this */
            lconst_0
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
         1: .line 307
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;

  public io.vertx.core.parsetools.RecordParser fetch(long);
    descriptor: (J)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // long amount
         0: .line 312
            lload 1 /* amount */
            lconst_0
            lcmp
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Fetch amount must be > 0"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 313
            aload 0 /* this */
            dup
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
            lload 1 /* amount */
            ladd
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
         4: .line 314
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
            lconst_0
            lcmp
            ifge 6
         5: .line 315
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.demand:J
         6: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.handleParsing:()V
         7: .line 318
            aload 0 /* this */
            areturn
        end local 1 // long amount
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    8     1  amount  J
    MethodParameters:
        Name  Flags
      amount  

  public io.vertx.core.parsetools.RecordParser resume();
    descriptor: ()Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
         0: .line 323
            aload 0 /* this */
            ldc 9223372036854775807
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.fetch:(J)Lio/vertx/core/parsetools/RecordParser;
            areturn
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;

  public io.vertx.core.parsetools.RecordParser endHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 328
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.parsetools.impl.RecordParserImpl.endHandler:Lio/vertx/core/Handler;
         1: .line 329
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/core/parsetools/RecordParser;
    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.parsetools.impl.RecordParserImpl.pause:()Lio/vertx/core/parsetools/RecordParser;
            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.parsetools.impl.RecordParserImpl.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            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.parsetools.impl.RecordParserImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void handle(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    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.parsetools.impl.RecordParserImpl.handle:(Lio/vertx/core/buffer/Buffer;)V
            return
      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.parsetools.impl.RecordParserImpl.resume:()Lio/vertx/core/parsetools/RecordParser;
            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.parsetools.impl.RecordParserImpl.fetch:(J)Lio/vertx/core/parsetools/RecordParser;
            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.parsetools.impl.RecordParserImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            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.parsetools.impl.RecordParserImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(java.lang.Void);
    descriptor: (Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // java.lang.Void v
         0: .line 288
            aload 0 /* this */
            invokevirtual io.vertx.core.parsetools.impl.RecordParserImpl.end:()V
            return
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    1     1     v  Ljava/lang/Void;

  private void lambda$1(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
        start local 1 // java.lang.Throwable err
         0: .line 290
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 2
         1: .line 291
            aload 0 /* this */
            getfield io.vertx.core.parsetools.impl.RecordParserImpl.exceptionHandler:Lio/vertx/core/Handler;
            aload 1 /* err */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 293
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable err
        end local 0 // io.vertx.core.parsetools.impl.RecordParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/parsetools/impl/RecordParserImpl;
            0    3     1   err  Ljava/lang/Throwable;
}
SourceFile: "RecordParserImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles