public class org.springframework.transaction.reactive.GenericReactiveTransaction implements org.springframework.transaction.ReactiveTransaction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.transaction.reactive.GenericReactiveTransaction
  super_class: java.lang.Object
{
  private final java.lang.Object transaction;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

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

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

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

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

  private final java.lang.Object suspendedResources;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

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

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

  public void <init>(java.lang.Object, boolean, boolean, boolean, boolean, java.lang.Object);
    descriptor: (Ljava/lang/Object;ZZZZLjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
        start local 1 // java.lang.Object transaction
        start local 2 // boolean newTransaction
        start local 3 // boolean newSynchronization
        start local 4 // boolean readOnly
        start local 5 // boolean debug
        start local 6 // java.lang.Object suspendedResources
         0: .line 77
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 57
            aload 0 /* this */
            iconst_0
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
         2: .line 59
            aload 0 /* this */
            iconst_0
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
         3: .line 81
            aload 0 /* this */
            aload 1 /* transaction */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
         4: .line 82
            aload 0 /* this */
            iload 2 /* newTransaction */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.newTransaction:Z
         5: .line 83
            aload 0 /* this */
            iload 3 /* newSynchronization */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.newSynchronization:Z
         6: .line 84
            aload 0 /* this */
            iload 4 /* readOnly */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.readOnly:Z
         7: .line 85
            aload 0 /* this */
            iload 5 /* debug */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.debug:Z
         8: .line 86
            aload 0 /* this */
            aload 6 /* suspendedResources */
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.suspendedResources:Ljava/lang/Object;
         9: .line 87
            return
        end local 6 // java.lang.Object suspendedResources
        end local 5 // boolean debug
        end local 4 // boolean readOnly
        end local 3 // boolean newSynchronization
        end local 2 // boolean newTransaction
        end local 1 // java.lang.Object transaction
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0                this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
            0   10     1         transaction  Ljava/lang/Object;
            0   10     2      newTransaction  Z
            0   10     3  newSynchronization  Z
            0   10     4            readOnly  Z
            0   10     5               debug  Z
            0   10     6  suspendedResources  Ljava/lang/Object;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
      1:
      2:
      3:
      4:
      5:
        org.springframework.lang.Nullable()
    MethodParameters:
                    Name  Flags
      transaction         
      newTransaction      
      newSynchronization  
      readOnly            
      debug               
      suspendedResources  

  public java.lang.Object getTransaction();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 95
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "No transaction active"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         3: .line 96
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean hasTransaction();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 103
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.transaction:Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isNewTransaction();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 108
            aload 0 /* this */
            invokevirtual org.springframework.transaction.reactive.GenericReactiveTransaction.hasTransaction:()Z
            ifeq 1
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.newTransaction:Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isNewSynchronization();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 116
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.newSynchronization:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 123
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.readOnly:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isDebug();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 132
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.debug:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public java.lang.Object getSuspendedResources();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 141
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.suspendedResources:Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void setRollbackOnly();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 146
            aload 0 /* this */
            iconst_1
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
         1: .line 147
            return
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isRollbackOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 156
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.rollbackOnly:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public void setCompleted();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 163
            aload 0 /* this */
            iconst_1
            putfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
         1: .line 164
            return
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;

  public boolean isCompleted();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
         0: .line 168
            aload 0 /* this */
            getfield org.springframework.transaction.reactive.GenericReactiveTransaction.completed:Z
            ireturn
        end local 0 // org.springframework.transaction.reactive.GenericReactiveTransaction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/transaction/reactive/GenericReactiveTransaction;
}
SourceFile: "GenericReactiveTransaction.java"