public abstract class io.reactiverse.pgclient.impl.CommandResponse<R> implements io.vertx.core.AsyncResult<R>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.reactiverse.pgclient.impl.CommandResponse
  super_class: java.lang.Object
{
  io.reactiverse.pgclient.impl.CommandScheduler scheduler;
    descriptor: Lio/reactiverse/pgclient/impl/CommandScheduler;
    flags: (0x0000) 

  private final io.reactiverse.pgclient.impl.codec.TxStatus txStatus;
    descriptor: Lio/reactiverse/pgclient/impl/codec/TxStatus;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> failure(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String msg
         0: .line 10
            new io.vertx.core.impl.NoStackTraceThrowable
            dup
            aload 0 /* msg */
            invokespecial io.vertx.core.impl.NoStackTraceThrowable.<init>:(Ljava/lang/String;)V
            aconst_null
            invokestatic io.reactiverse.pgclient.impl.CommandResponse.failure:(Ljava/lang/Throwable;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
            areturn
        end local 0 // java.lang.String msg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   msg  Ljava/lang/String;
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
      Name  Flags
      msg   

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> failure(java.lang.String, io.reactiverse.pgclient.impl.codec.TxStatus);
    descriptor: (Ljava/lang/String;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.lang.String msg
        start local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
         0: .line 14
            new io.vertx.core.impl.NoStackTraceThrowable
            dup
            aload 0 /* msg */
            invokespecial io.vertx.core.impl.NoStackTraceThrowable.<init>:(Ljava/lang/String;)V
            aload 1 /* txStatus */
            invokestatic io.reactiverse.pgclient.impl.CommandResponse.failure:(Ljava/lang/Throwable;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
            areturn
        end local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
        end local 0 // java.lang.String msg
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0       msg  Ljava/lang/String;
            0    1     1  txStatus  Lio/reactiverse/pgclient/impl/codec/TxStatus;
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/String;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
          Name  Flags
      msg       
      txStatus  

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> failure(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Throwable cause
         0: .line 18
            aload 0 /* cause */
            aconst_null
            invokestatic io.reactiverse.pgclient.impl.CommandResponse.failure:(Ljava/lang/Throwable;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
            areturn
        end local 0 // java.lang.Throwable cause
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  cause  Ljava/lang/Throwable;
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/Throwable;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
       Name  Flags
      cause  

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> failure(java.lang.Throwable, io.reactiverse.pgclient.impl.codec.TxStatus);
    descriptor: (Ljava/lang/Throwable;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Throwable cause
        start local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
         0: .line 22
            new io.reactiverse.pgclient.impl.CommandResponse$1
            dup
            aload 1 /* txStatus */
            aload 0 /* cause */
            invokespecial io.reactiverse.pgclient.impl.CommandResponse$1.<init>:(Lio/reactiverse/pgclient/impl/codec/TxStatus;Ljava/lang/Throwable;)V
            areturn
        end local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
        end local 0 // java.lang.Throwable cause
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0     cause  Ljava/lang/Throwable;
            0    1     1  txStatus  Lio/reactiverse/pgclient/impl/codec/TxStatus;
    Signature: <R:Ljava/lang/Object;>(Ljava/lang/Throwable;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
          Name  Flags
      cause     
      txStatus  

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> success(R);
    descriptor: (Ljava/lang/Object;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object result
         0: .line 43
            aload 0 /* result */
            aconst_null
            invokestatic io.reactiverse.pgclient.impl.CommandResponse.success:(Ljava/lang/Object;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
            areturn
        end local 0 // java.lang.Object result
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  result  TR;
    Signature: <R:Ljava/lang/Object;>(TR;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
        Name  Flags
      result  

  static <R> io.reactiverse.pgclient.impl.CommandResponse<R> success(R, io.reactiverse.pgclient.impl.codec.TxStatus);
    descriptor: (Ljava/lang/Object;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Object result
        start local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
         0: .line 47
            new io.reactiverse.pgclient.impl.CommandResponse$2
            dup
            aload 1 /* txStatus */
            aload 0 /* result */
            invokespecial io.reactiverse.pgclient.impl.CommandResponse$2.<init>:(Lio/reactiverse/pgclient/impl/codec/TxStatus;Ljava/lang/Object;)V
            areturn
        end local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
        end local 0 // java.lang.Object result
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0    result  TR;
            0    1     1  txStatus  Lio/reactiverse/pgclient/impl/codec/TxStatus;
    Signature: <R:Ljava/lang/Object;>(TR;Lio/reactiverse/pgclient/impl/codec/TxStatus;)Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
    MethodParameters:
          Name  Flags
      result    
      txStatus  

  public void <init>(io.reactiverse.pgclient.impl.codec.TxStatus);
    descriptor: (Lio/reactiverse/pgclient/impl/codec/TxStatus;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactiverse.pgclient.impl.CommandResponse this
        start local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
         0: .line 71
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            aload 1 /* txStatus */
            putfield io.reactiverse.pgclient.impl.CommandResponse.txStatus:Lio/reactiverse/pgclient/impl/codec/TxStatus;
         2: .line 73
            return
        end local 1 // io.reactiverse.pgclient.impl.codec.TxStatus txStatus
        end local 0 // io.reactiverse.pgclient.impl.CommandResponse this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
            0    3     1  txStatus  Lio/reactiverse/pgclient/impl/codec/TxStatus;
    MethodParameters:
          Name  Flags
      txStatus  

  io.reactiverse.pgclient.impl.codec.TxStatus txStatus();
    descriptor: ()Lio/reactiverse/pgclient/impl/codec/TxStatus;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactiverse.pgclient.impl.CommandResponse this
         0: .line 76
            aload 0 /* this */
            getfield io.reactiverse.pgclient.impl.CommandResponse.txStatus:Lio/reactiverse/pgclient/impl/codec/TxStatus;
            areturn
        end local 0 // io.reactiverse.pgclient.impl.CommandResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactiverse/pgclient/impl/CommandResponse<TR;>;
}
Signature: <R:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/AsyncResult<TR;>;
SourceFile: "CommandResponse.java"
NestMembers:
  io.reactiverse.pgclient.impl.CommandResponse$1  io.reactiverse.pgclient.impl.CommandResponse$2
InnerClasses:
  io.reactiverse.pgclient.impl.CommandResponse$1
  io.reactiverse.pgclient.impl.CommandResponse$2