class io.vertx.mysqlclient.impl.codec.MySQLDecoder extends io.netty.handler.codec.ByteToMessageDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.mysqlclient.impl.codec.MySQLDecoder
  super_class: io.netty.handler.codec.ByteToMessageDecoder
{
  private final java.util.ArrayDeque<io.vertx.mysqlclient.impl.codec.CommandCodec<?, ?>> inflight;
    descriptor: Ljava/util/ArrayDeque;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayDeque<Lio/vertx/mysqlclient/impl/codec/CommandCodec<**>;>;

  private final io.vertx.mysqlclient.impl.codec.MySQLEncoder encoder;
    descriptor: Lio/vertx/mysqlclient/impl/codec/MySQLEncoder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(java.util.ArrayDeque<io.vertx.mysqlclient.impl.codec.CommandCodec<?, ?>>, io.vertx.mysqlclient.impl.codec.MySQLEncoder);
    descriptor: (Ljava/util/ArrayDeque;Lio/vertx/mysqlclient/impl/codec/MySQLEncoder;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
        start local 1 // java.util.ArrayDeque inflight
        start local 2 // io.vertx.mysqlclient.impl.codec.MySQLEncoder encoder
         0: .line 20
            aload 0 /* this */
            invokespecial io.netty.handler.codec.ByteToMessageDecoder.<init>:()V
         1: .line 18
            aload 0 /* this */
            aconst_null
            putfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
         2: .line 21
            aload 0 /* this */
            aload 1 /* inflight */
            putfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.inflight:Ljava/util/ArrayDeque;
         3: .line 22
            aload 0 /* this */
            aload 2 /* encoder */
            putfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.encoder:Lio/vertx/mysqlclient/impl/codec/MySQLEncoder;
         4: .line 23
            return
        end local 2 // io.vertx.mysqlclient.impl.codec.MySQLEncoder encoder
        end local 1 // java.util.ArrayDeque inflight
        end local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/mysqlclient/impl/codec/MySQLDecoder;
            0    5     1  inflight  Ljava/util/ArrayDeque<Lio/vertx/mysqlclient/impl/codec/CommandCodec<**>;>;
            0    5     2   encoder  Lio/vertx/mysqlclient/impl/codec/MySQLEncoder;
    Signature: (Ljava/util/ArrayDeque<Lio/vertx/mysqlclient/impl/codec/CommandCodec<**>;>;Lio/vertx/mysqlclient/impl/codec/MySQLEncoder;)V
    MethodParameters:
          Name  Flags
      inflight  
      encoder   

  protected void decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.buffer.ByteBuf in
        start local 3 // java.util.List out
         0: .line 27
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iconst_4
            if_icmple 18
         1: .line 28
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            istore 4 /* packetStartIdx */
        start local 4 // int packetStartIdx
         2: .line 29
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readUnsignedMediumLE:()I
            istore 5 /* payloadLength */
        start local 5 // int payloadLength
         3: .line 30
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readUnsignedByte:()S
            istore 6 /* sequenceId */
        start local 6 // int sequenceId
         4: .line 32
            iload 5 /* payloadLength */
            ldc 16777215
            if_icmplt 6
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            ifnonnull 6
         5: .line 33
            aload 0 /* this */
            aload 1 /* ctx */
            invokeinterface io.netty.channel.ChannelHandlerContext.alloc:()Lio/netty/buffer/ByteBufAllocator;
            invokeinterface io.netty.buffer.ByteBufAllocator.compositeBuffer:()Lio/netty/buffer/CompositeByteBuf;
            putfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
         6: .line 37
      StackMap locals: int int int
      StackMap stack:
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            iload 5 /* payloadLength */
            if_icmplt 17
         7: .line 38
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            ifnull 15
         8: .line 40
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            iconst_1
            aload 2 /* in */
            iload 5 /* payloadLength */
            invokevirtual io.netty.buffer.ByteBuf.readRetainedSlice:(I)Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.CompositeByteBuf.addComponent:(ZLio/netty/buffer/ByteBuf;)Lio/netty/buffer/CompositeByteBuf;
            pop
         9: .line 41
            iinc 6 /* sequenceId */ 1
        10: .line 43
            iload 5 /* payloadLength */
            ldc 16777215
            if_icmpge 18
        11: .line 45
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            invokevirtual io.netty.buffer.CompositeByteBuf.readableBytes:()I
            iload 6 /* sequenceId */
            invokevirtual io.vertx.mysqlclient.impl.codec.MySQLDecoder.decodePayload:(Lio/netty/buffer/ByteBuf;II)V
        12: .line 46
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
            invokevirtual io.netty.buffer.CompositeByteBuf.release:()Z
            pop
        13: .line 47
            aload 0 /* this */
            aconst_null
            putfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.aggregatedPacketPayload:Lio/netty/buffer/CompositeByteBuf;
        14: .line 49
            goto 18
        15: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* in */
            iload 5 /* payloadLength */
            invokevirtual io.netty.buffer.ByteBuf.readSlice:(I)Lio/netty/buffer/ByteBuf;
            iload 5 /* payloadLength */
            iload 6 /* sequenceId */
            invokevirtual io.vertx.mysqlclient.impl.codec.MySQLDecoder.decodePayload:(Lio/netty/buffer/ByteBuf;II)V
        16: .line 53
            goto 18
        17: .line 54
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            iload 4 /* packetStartIdx */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
        end local 6 // int sequenceId
        end local 5 // int payloadLength
        end local 4 // int packetStartIdx
        18: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.util.List out
        end local 2 // io.netty.buffer.ByteBuf in
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   19     0            this  Lio/vertx/mysqlclient/impl/codec/MySQLDecoder;
            0   19     1             ctx  Lio/netty/channel/ChannelHandlerContext;
            0   19     2              in  Lio/netty/buffer/ByteBuf;
            0   19     3             out  Ljava/util/List<Ljava/lang/Object;>;
            2   18     4  packetStartIdx  I
            3   18     5   payloadLength  I
            4   18     6      sequenceId  I
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      ctx   
      in    
      out   

  private void decodePayload(io.netty.buffer.ByteBuf, int, int);
    descriptor: (Lio/netty/buffer/ByteBuf;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
        start local 1 // io.netty.buffer.ByteBuf payload
        start local 2 // int payloadLength
        start local 3 // int sequenceId
         0: .line 60
            aload 0 /* this */
            getfield io.vertx.mysqlclient.impl.codec.MySQLDecoder.inflight:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.peek:()Ljava/lang/Object;
            checkcast io.vertx.mysqlclient.impl.codec.CommandCodec
            astore 4 /* ctx */
        start local 4 // io.vertx.mysqlclient.impl.codec.CommandCodec ctx
         1: .line 61
            aload 4 /* ctx */
            iload 3 /* sequenceId */
            iconst_1
            iadd
            putfield io.vertx.mysqlclient.impl.codec.CommandCodec.sequenceId:I
         2: .line 62
            aload 4 /* ctx */
            aload 1 /* payload */
            iload 2 /* payloadLength */
            iload 3 /* sequenceId */
            invokevirtual io.vertx.mysqlclient.impl.codec.CommandCodec.decodePayload:(Lio/netty/buffer/ByteBuf;II)V
         3: .line 63
            aload 1 /* payload */
            invokevirtual io.netty.buffer.ByteBuf.clear:()Lio/netty/buffer/ByteBuf;
            pop
         4: .line 64
            return
        end local 4 // io.vertx.mysqlclient.impl.codec.CommandCodec ctx
        end local 3 // int sequenceId
        end local 2 // int payloadLength
        end local 1 // io.netty.buffer.ByteBuf payload
        end local 0 // io.vertx.mysqlclient.impl.codec.MySQLDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/vertx/mysqlclient/impl/codec/MySQLDecoder;
            0    5     1        payload  Lio/netty/buffer/ByteBuf;
            0    5     2  payloadLength  I
            0    5     3     sequenceId  I
            1    5     4            ctx  Lio/vertx/mysqlclient/impl/codec/CommandCodec;
    MethodParameters:
               Name  Flags
      payload        
      payloadLength  
      sequenceId     
}
SourceFile: "MySQLDecoder.java"