public class io.vertx.pgclient.impl.codec.PgCodec extends io.netty.channel.CombinedChannelDuplexHandler<io.vertx.pgclient.impl.codec.PgDecoder, io.vertx.pgclient.impl.codec.PgEncoder>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.pgclient.impl.codec.PgCodec
  super_class: io.netty.channel.CombinedChannelDuplexHandler
{
  private final java.util.ArrayDeque<io.vertx.pgclient.impl.codec.PgCommandCodec<?, ?>> inflight;
    descriptor: Ljava/util/ArrayDeque;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayDeque<Lio/vertx/pgclient/impl/codec/PgCommandCodec<**>;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // io.vertx.pgclient.impl.codec.PgCodec this
         0: .line 32
            aload 0 /* this */
            invokespecial io.netty.channel.CombinedChannelDuplexHandler.<init>:()V
         1: .line 30
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            invokespecial java.util.ArrayDeque.<init>:()V
            putfield io.vertx.pgclient.impl.codec.PgCodec.inflight:Ljava/util/ArrayDeque;
         2: .line 33
            new io.vertx.pgclient.impl.codec.PgDecoder
            dup
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.codec.PgCodec.inflight:Ljava/util/ArrayDeque;
            invokespecial io.vertx.pgclient.impl.codec.PgDecoder.<init>:(Ljava/util/ArrayDeque;)V
            astore 1 /* decoder */
        start local 1 // io.vertx.pgclient.impl.codec.PgDecoder decoder
         3: .line 34
            new io.vertx.pgclient.impl.codec.PgEncoder
            dup
            aload 1 /* decoder */
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.codec.PgCodec.inflight:Ljava/util/ArrayDeque;
            invokespecial io.vertx.pgclient.impl.codec.PgEncoder.<init>:(Lio/vertx/pgclient/impl/codec/PgDecoder;Ljava/util/ArrayDeque;)V
            astore 2 /* encoder */
        start local 2 // io.vertx.pgclient.impl.codec.PgEncoder encoder
         4: .line 35
            aload 0 /* this */
            aload 1 /* decoder */
            aload 2 /* encoder */
            invokevirtual io.vertx.pgclient.impl.codec.PgCodec.init:(Lio/netty/channel/ChannelInboundHandler;Lio/netty/channel/ChannelOutboundHandler;)V
         5: .line 36
            return
        end local 2 // io.vertx.pgclient.impl.codec.PgEncoder encoder
        end local 1 // io.vertx.pgclient.impl.codec.PgDecoder decoder
        end local 0 // io.vertx.pgclient.impl.codec.PgCodec this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/vertx/pgclient/impl/codec/PgCodec;
            3    6     1  decoder  Lio/vertx/pgclient/impl/codec/PgDecoder;
            4    6     2  encoder  Lio/vertx/pgclient/impl/codec/PgEncoder;

  public void exceptionCaught(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.pgclient.impl.codec.PgCodec this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Throwable cause
         0: .line 40
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* cause */
            invokevirtual io.vertx.pgclient.impl.codec.PgCodec.fail:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
         1: .line 41
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* cause */
            invokespecial io.netty.channel.CombinedChannelDuplexHandler.exceptionCaught:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
         2: .line 42
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.pgclient.impl.codec.PgCodec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/pgclient/impl/codec/PgCodec;
            0    3     1    ctx  Lio/netty/channel/ChannelHandlerContext;
            0    3     2  cause  Ljava/lang/Throwable;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
       Name  Flags
      ctx    
      cause  

  private void fail(io.netty.channel.ChannelHandlerContext, java.lang.Throwable);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // io.vertx.pgclient.impl.codec.PgCodec this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // java.lang.Throwable cause
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.pgclient.impl.codec.PgCodec.inflight:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         1: goto 7
         2: .line 46
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.vertx.pgclient.impl.codec.PgCommandCodec
            astore 4 /* codec */
        start local 4 // io.vertx.pgclient.impl.codec.PgCommandCodec codec
         3: .line 47
            aload 3 /* it */
            invokeinterface java.util.Iterator.remove:()V
         4: .line 48
            aload 2 /* cause */
            invokestatic io.vertx.sqlclient.impl.command.CommandResponse.failure:(Ljava/lang/Throwable;)Lio/vertx/sqlclient/impl/command/CommandResponse;
            astore 5 /* failure */
        start local 5 // io.vertx.sqlclient.impl.command.CommandResponse failure
         5: .line 49
            aload 5 /* failure */
            aload 4 /* codec */
            getfield io.vertx.pgclient.impl.codec.PgCommandCodec.cmd:Lio/vertx/sqlclient/impl/command/CommandBase;
            putfield io.vertx.sqlclient.impl.command.CommandResponse.cmd:Lio/vertx/sqlclient/impl/command/CommandBase;
         6: .line 50
            aload 1 /* ctx */
            aload 5 /* failure */
            invokeinterface io.netty.channel.ChannelHandlerContext.fireChannelRead:(Ljava/lang/Object;)Lio/netty/channel/ChannelHandlerContext;
            pop
        end local 5 // io.vertx.sqlclient.impl.command.CommandResponse failure
        end local 4 // io.vertx.pgclient.impl.codec.PgCommandCodec codec
         7: .line 45
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        end local 3 // java.util.Iterator it
         8: .line 52
            return
        end local 2 // java.lang.Throwable cause
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.pgclient.impl.codec.PgCodec this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/vertx/pgclient/impl/codec/PgCodec;
            0    9     1      ctx  Lio/netty/channel/ChannelHandlerContext;
            0    9     2    cause  Ljava/lang/Throwable;
            1    8     3       it  Ljava/util/Iterator<Lio/vertx/pgclient/impl/codec/PgCommandCodec<**>;>;
            3    7     4    codec  Lio/vertx/pgclient/impl/codec/PgCommandCodec<**>;
            5    7     5  failure  Lio/vertx/sqlclient/impl/command/CommandResponse<Ljava/lang/Object;>;
    MethodParameters:
       Name  Flags
      ctx    
      cause  

  public void channelInactive(io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.impl.codec.PgCodec this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 56
            aload 0 /* this */
            aload 1 /* ctx */
            new io.vertx.core.VertxException
            dup
            ldc "closed"
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/String;)V
            invokevirtual io.vertx.pgclient.impl.codec.PgCodec.fail:(Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V
         1: .line 57
            aload 0 /* this */
            aload 1 /* ctx */
            invokespecial io.netty.channel.CombinedChannelDuplexHandler.channelInactive:(Lio/netty/channel/ChannelHandlerContext;)V
         2: .line 58
            return
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.pgclient.impl.codec.PgCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/pgclient/impl/codec/PgCodec;
            0    3     1   ctx  Lio/netty/channel/ChannelHandlerContext;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      ctx   
}
Signature: Lio/netty/channel/CombinedChannelDuplexHandler<Lio/vertx/pgclient/impl/codec/PgDecoder;Lio/vertx/pgclient/impl/codec/PgEncoder;>;
SourceFile: "PgCodec.java"