class org.hibernate.internal.SessionImpl$4 implements org.hibernate.engine.transaction.spi.TransactionObserver
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.hibernate.internal.SessionImpl$4
  super_class: java.lang.Object
{
  final org.hibernate.internal.SessionImpl this$0;
    descriptor: Lorg/hibernate/internal/SessionImpl;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.hibernate.internal.SessionImpl);
    descriptor: (Lorg/hibernate/internal/SessionImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.internal.SessionImpl$4 this
         0: .line 2714
            aload 0 /* this */
            aload 1
            putfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.hibernate.internal.SessionImpl$4 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/internal/SessionImpl$4;
    MethodParameters:
        Name  Flags
      this$0  final

  public void afterBegin();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.hibernate.internal.SessionImpl$4 this
         0: .line 2717
            return
        end local 0 // org.hibernate.internal.SessionImpl$4 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/internal/SessionImpl$4;

  public void beforeCompletion();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.hibernate.internal.SessionImpl$4 this
         0: .line 2721
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.isOpen:()Z
            ifeq 2
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.getHibernateFlushMode:()Lorg/hibernate/FlushMode;
            getstatic org.hibernate.FlushMode.MANUAL:Lorg/hibernate/FlushMode;
            if_acmpeq 2
         1: .line 2722
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.managedFlush:()V
         2: .line 2724
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            getfield org.hibernate.internal.SessionImpl.actionQueue:Lorg/hibernate/engine/spi/ActionQueue;
            invokevirtual org.hibernate.engine.spi.ActionQueue.beforeTransactionCompletion:()V
         3: .line 2726
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.getInterceptor:()Lorg/hibernate/Interceptor;
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.getCurrentTransaction:()Lorg/hibernate/engine/transaction/spi/TransactionImplementor;
            invokeinterface org.hibernate.Interceptor.beforeTransactionCompletion:(Lorg/hibernate/Transaction;)V
         4: .line 2727
            goto 7
         5: .line 2728
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1 /* t */
        start local 1 // java.lang.Throwable t
         6: .line 2729
            getstatic org.hibernate.internal.SessionImpl.log:Lorg/hibernate/internal/EntityManagerMessageLogger;
            aload 1 /* t */
            invokeinterface org.hibernate.internal.EntityManagerMessageLogger.exceptionInBeforeTransactionCompletionInterceptor:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable t
         7: .line 2731
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.hibernate.internal.SessionImpl$4 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/internal/SessionImpl$4;
            6    7     1     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable

  public void afterCompletion(boolean, boolean);
    descriptor: (ZZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.internal.SessionImpl$4 this
        start local 1 // boolean successful
        start local 2 // boolean delayed
         0: .line 2735
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            iload 1 /* successful */
            iload 2 /* delayed */
            invokevirtual org.hibernate.internal.SessionImpl.afterTransactionCompletion:(ZZ)V
         1: .line 2736
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.isClosed:()Z
            ifne 3
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            getfield org.hibernate.internal.SessionImpl.autoClose:Z
            ifeq 3
         2: .line 2737
            aload 0 /* this */
            getfield org.hibernate.internal.SessionImpl$4.this$0:Lorg/hibernate/internal/SessionImpl;
            invokevirtual org.hibernate.internal.SessionImpl.managedClose:()V
         3: .line 2739
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean delayed
        end local 1 // boolean successful
        end local 0 // org.hibernate.internal.SessionImpl$4 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/hibernate/internal/SessionImpl$4;
            0    4     1  successful  Z
            0    4     2     delayed  Z
    MethodParameters:
            Name  Flags
      successful  
      delayed     
}
SourceFile: "SessionImpl.java"
EnclosingMethod: org.hibernate.internal.SessionImpl.addSharedSessionTransactionObserver:(Lorg/hibernate/resource/transaction/spi/TransactionCoordinator;)V
NestHost: org.hibernate.internal.SessionImpl
InnerClasses:
  org.hibernate.internal.SessionImpl$4