public class org.h2.jdbcx.JdbcConnectionPool implements javax.sql.DataSource, javax.sql.ConnectionEventListener, org.h2.jdbcx.JdbcConnectionPoolBackwardsCompat
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.jdbcx.JdbcConnectionPool
  super_class: java.lang.Object
{
  private static final int DEFAULT_TIMEOUT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 30

  private static final int DEFAULT_MAX_CONNECTIONS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  private final javax.sql.ConnectionPoolDataSource dataSource;
    descriptor: Ljavax/sql/ConnectionPoolDataSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Queue<javax.sql.PooledConnection> recycledConnections;
    descriptor: Ljava/util/Queue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Queue<Ljavax/sql/PooledConnection;>;

  private java.io.PrintWriter logWriter;
    descriptor: Ljava/io/PrintWriter;
    flags: (0x0002) ACC_PRIVATE

  private volatile int maxConnections;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile int timeout;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private java.util.concurrent.atomic.AtomicInteger activeConnections;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.AtomicBoolean isDisposed;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(javax.sql.ConnectionPoolDataSource);
    descriptor: (Ljavax/sql/ConnectionPoolDataSource;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // javax.sql.ConnectionPoolDataSource dataSource
         0: .line 81
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            new java.util.concurrent.ConcurrentLinkedQueue
            dup
            invokespecial java.util.concurrent.ConcurrentLinkedQueue.<init>:()V
            putfield org.h2.jdbcx.JdbcConnectionPool.recycledConnections:Ljava/util/Queue;
         2: .line 76
            aload 0 /* this */
            bipush 10
            putfield org.h2.jdbcx.JdbcConnectionPool.maxConnections:I
         3: .line 77
            aload 0 /* this */
            bipush 30
            putfield org.h2.jdbcx.JdbcConnectionPool.timeout:I
         4: .line 78
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
         5: .line 79
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield org.h2.jdbcx.JdbcConnectionPool.isDisposed:Ljava/util/concurrent/atomic/AtomicBoolean;
         6: .line 82
            aload 0 /* this */
            aload 1 /* dataSource */
            putfield org.h2.jdbcx.JdbcConnectionPool.dataSource:Ljavax/sql/ConnectionPoolDataSource;
         7: .line 83
            aload 1 /* dataSource */
            ifnull 11
         8: .line 85
            aload 0 /* this */
            aload 1 /* dataSource */
            invokeinterface javax.sql.ConnectionPoolDataSource.getLogWriter:()Ljava/io/PrintWriter;
            putfield org.h2.jdbcx.JdbcConnectionPool.logWriter:Ljava/io/PrintWriter;
         9: .line 86
            goto 11
      StackMap locals: org.h2.jdbcx.JdbcConnectionPool javax.sql.ConnectionPoolDataSource
      StackMap stack: java.sql.SQLException
        10: pop
        11: .line 90
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javax.sql.ConnectionPoolDataSource dataSource
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0   12     1  dataSource  Ljavax/sql/ConnectionPoolDataSource;
      Exception table:
        from    to  target  type
           8     9      10  Class java.sql.SQLException
    MethodParameters:
            Name  Flags
      dataSource  

  public static org.h2.jdbcx.JdbcConnectionPool create(javax.sql.ConnectionPoolDataSource);
    descriptor: (Ljavax/sql/ConnectionPoolDataSource;)Lorg/h2/jdbcx/JdbcConnectionPool;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.sql.ConnectionPoolDataSource dataSource
         0: .line 99
            new org.h2.jdbcx.JdbcConnectionPool
            dup
            aload 0 /* dataSource */
            invokespecial org.h2.jdbcx.JdbcConnectionPool.<init>:(Ljavax/sql/ConnectionPoolDataSource;)V
            areturn
        end local 0 // javax.sql.ConnectionPoolDataSource dataSource
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  dataSource  Ljavax/sql/ConnectionPoolDataSource;
    MethodParameters:
            Name  Flags
      dataSource  

  public static org.h2.jdbcx.JdbcConnectionPool create(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lorg/h2/jdbcx/JdbcConnectionPool;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // java.lang.String url
        start local 1 // java.lang.String user
        start local 2 // java.lang.String password
         0: .line 112
            new org.h2.jdbcx.JdbcDataSource
            dup
            invokespecial org.h2.jdbcx.JdbcDataSource.<init>:()V
            astore 3 /* ds */
        start local 3 // org.h2.jdbcx.JdbcDataSource ds
         1: .line 113
            aload 3 /* ds */
            aload 0 /* url */
            invokevirtual org.h2.jdbcx.JdbcDataSource.setURL:(Ljava/lang/String;)V
         2: .line 114
            aload 3 /* ds */
            aload 1 /* user */
            invokevirtual org.h2.jdbcx.JdbcDataSource.setUser:(Ljava/lang/String;)V
         3: .line 115
            aload 3 /* ds */
            aload 2 /* password */
            invokevirtual org.h2.jdbcx.JdbcDataSource.setPassword:(Ljava/lang/String;)V
         4: .line 116
            new org.h2.jdbcx.JdbcConnectionPool
            dup
            aload 3 /* ds */
            invokespecial org.h2.jdbcx.JdbcConnectionPool.<init>:(Ljavax/sql/ConnectionPoolDataSource;)V
            areturn
        end local 3 // org.h2.jdbcx.JdbcDataSource ds
        end local 2 // java.lang.String password
        end local 1 // java.lang.String user
        end local 0 // java.lang.String url
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0       url  Ljava/lang/String;
            0    5     1      user  Ljava/lang/String;
            0    5     2  password  Ljava/lang/String;
            1    5     3        ds  Lorg/h2/jdbcx/JdbcDataSource;
    MethodParameters:
          Name  Flags
      url       
      user      
      password  

  public void setMaxConnections(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // int max
         0: .line 126
            iload 1 /* max */
            iconst_1
            if_icmpge 2
         1: .line 127
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid maxConnections value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* max */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* max */
            putfield org.h2.jdbcx.JdbcConnectionPool.maxConnections:I
         3: .line 130
            return
        end local 1 // int max
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    4     1   max  I
    MethodParameters:
      Name  Flags
      max   

  public int getMaxConnections();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 138
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.maxConnections:I
            ireturn
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;

  public int getLoginTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 148
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.timeout:I
            ireturn
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;

  public void setLoginTimeout(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // int seconds
         0: .line 160
            iload 1 /* seconds */
            ifne 2
         1: .line 161
            bipush 30
            istore 1 /* seconds */
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* seconds */
            putfield org.h2.jdbcx.JdbcConnectionPool.timeout:I
         3: .line 164
            return
        end local 1 // int seconds
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    4     1  seconds  I
    MethodParameters:
         Name  Flags
      seconds  

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 171
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.isDisposed:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         1: .line 174
            goto 3
        start local 1 // javax.sql.PooledConnection pc
         2: .line 175
      StackMap locals: javax.sql.PooledConnection
      StackMap stack:
            aload 0 /* this */
            aload 1 /* pc */
            invokevirtual org.h2.jdbcx.JdbcConnectionPool.closeConnection:(Ljavax/sql/PooledConnection;)V
        end local 1 // javax.sql.PooledConnection pc
         3: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.recycledConnections:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast javax.sql.PooledConnection
            dup
            astore 1 /* pc */
        start local 1 // javax.sql.PooledConnection pc
         4: ifnonnull 2
         5: .line 177
            return
        end local 1 // javax.sql.PooledConnection pc
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
            2    3     1    pc  Ljavax/sql/PooledConnection;
            4    6     1    pc  Ljavax/sql/PooledConnection;

  public java.sql.Connection getConnection();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 194
            invokestatic java.lang.System.nanoTime:()J
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.timeout:I
            i2l
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            ladd
            lstore 1 /* max */
        start local 1 // long max
         1: .line 195
            iconst_0
            istore 3 /* spin */
        start local 3 // int spin
         2: .line 197
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.maxConnections:I
            if_icmpgt 8
         3: .line 199
            aload 0 /* this */
            invokevirtual org.h2.jdbcx.JdbcConnectionPool.getConnectionNow:()Ljava/sql/Connection;
         4: areturn
         5: .line 200
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4 /* t */
        start local 4 // java.lang.Throwable t
         6: .line 201
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            pop
         7: .line 202
            aload 4 /* t */
            athrow
        end local 4 // java.lang.Throwable t
         8: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            pop
         9: .line 207
            iinc 3 /* spin */ -1
            iload 3 /* spin */
            iflt 11
        10: .line 208
            goto 16
        11: .line 211
      StackMap locals:
      StackMap stack:
            iconst_3
            istore 3 /* spin */
        12: .line 212
            lconst_1
            invokestatic java.lang.Thread.sleep:(J)V
        13: .line 213
            goto 16
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        14: pop
        15: .line 214
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
        16: .line 216
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.nanoTime:()J
            lload 1 /* max */
            lsub
            lconst_0
        17: .line 196
            lcmp
            ifle 2
        18: .line 217
            new java.sql.SQLException
            dup
            ldc "Login timeout"
            ldc "08001"
            sipush 8001
            invokespecial java.sql.SQLException.<init>:(Ljava/lang/String;Ljava/lang/String;I)V
            athrow
        end local 3 // int spin
        end local 1 // long max
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
            1   19     1   max  J
            2   19     3  spin  I
            6    8     4     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable
          11    13      14  Class java.lang.InterruptedException
    Exceptions:
      throws java.sql.SQLException

  public java.sql.Connection getConnection(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // java.lang.String user
        start local 2 // java.lang.String password
         0: .line 225
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // java.lang.String password
        end local 1 // java.lang.String user
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    1     1      user  Ljava/lang/String;
            0    1     2  password  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      user      
      password  

  private java.sql.Connection getConnectionNow();
    descriptor: ()Ljava/sql/Connection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 229
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.isDisposed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 2
         1: .line 230
            new java.lang.IllegalStateException
            dup
            ldc "Connection pool has been disposed."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.recycledConnections:Ljava/util/Queue;
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast javax.sql.PooledConnection
            astore 1 /* pc */
        start local 1 // javax.sql.PooledConnection pc
         3: .line 233
            aload 1 /* pc */
            ifnonnull 5
         4: .line 234
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.dataSource:Ljavax/sql/ConnectionPoolDataSource;
            invokeinterface javax.sql.ConnectionPoolDataSource.getPooledConnection:()Ljavax/sql/PooledConnection;
            astore 1 /* pc */
         5: .line 236
      StackMap locals: javax.sql.PooledConnection
      StackMap stack:
            aload 1 /* pc */
            invokeinterface javax.sql.PooledConnection.getConnection:()Ljava/sql/Connection;
            astore 2 /* conn */
        start local 2 // java.sql.Connection conn
         6: .line 237
            aload 1 /* pc */
            aload 0 /* this */
            invokeinterface javax.sql.PooledConnection.addConnectionEventListener:(Ljavax/sql/ConnectionEventListener;)V
         7: .line 238
            aload 2 /* conn */
            areturn
        end local 2 // java.sql.Connection conn
        end local 1 // javax.sql.PooledConnection pc
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
            3    8     1    pc  Ljavax/sql/PooledConnection;
            6    8     2  conn  Ljava/sql/Connection;
    Exceptions:
      throws java.sql.SQLException

  private void recycleConnection(javax.sql.PooledConnection);
    descriptor: (Ljavax/sql/PooledConnection;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // javax.sql.PooledConnection pc
         0: .line 249
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.decrementAndGet:()I
            istore 2 /* active */
        start local 2 // int active
         1: .line 250
            iload 2 /* active */
            ifge 4
         2: .line 251
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            pop
         3: .line 252
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 254
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.isDisposed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 9
            iload 2 /* active */
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.maxConnections:I
            if_icmpge 9
         5: .line 255
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.recycledConnections:Ljava/util/Queue;
            aload 1 /* pc */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         6: .line 256
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.isDisposed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 10
         7: .line 257
            aload 0 /* this */
            invokevirtual org.h2.jdbcx.JdbcConnectionPool.dispose:()V
         8: .line 259
            goto 10
         9: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* pc */
            invokevirtual org.h2.jdbcx.JdbcConnectionPool.closeConnection:(Ljavax/sql/PooledConnection;)V
        10: .line 262
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int active
        end local 1 // javax.sql.PooledConnection pc
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0   11     1      pc  Ljavax/sql/PooledConnection;
            1   11     2  active  I
    MethodParameters:
      Name  Flags
      pc    

  private void closeConnection(javax.sql.PooledConnection);
    descriptor: (Ljavax/sql/PooledConnection;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // javax.sql.PooledConnection pc
         0: .line 266
            aload 1 /* pc */
            invokeinterface javax.sql.PooledConnection.close:()V
         1: .line 267
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         2: astore 2 /* e */
        start local 2 // java.sql.SQLException e
         3: .line 268
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.logWriter:Ljava/io/PrintWriter;
            ifnull 5
         4: .line 269
            aload 2 /* e */
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.logWriter:Ljava/io/PrintWriter;
            invokevirtual java.sql.SQLException.printStackTrace:(Ljava/io/PrintWriter;)V
        end local 2 // java.sql.SQLException e
         5: .line 272
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javax.sql.PooledConnection pc
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    6     1    pc  Ljavax/sql/PooledConnection;
            3    5     2     e  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.sql.SQLException
    MethodParameters:
      Name  Flags
      pc    

  public void connectionClosed(javax.sql.ConnectionEvent);
    descriptor: (Ljavax/sql/ConnectionEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // javax.sql.ConnectionEvent event
         0: .line 279
            aload 1 /* event */
            invokevirtual javax.sql.ConnectionEvent.getSource:()Ljava/lang/Object;
            checkcast javax.sql.PooledConnection
            astore 2 /* pc */
        start local 2 // javax.sql.PooledConnection pc
         1: .line 280
            aload 2 /* pc */
            aload 0 /* this */
            invokeinterface javax.sql.PooledConnection.removeConnectionEventListener:(Ljavax/sql/ConnectionEventListener;)V
         2: .line 281
            aload 0 /* this */
            aload 2 /* pc */
            invokevirtual org.h2.jdbcx.JdbcConnectionPool.recycleConnection:(Ljavax/sql/PooledConnection;)V
         3: .line 282
            return
        end local 2 // javax.sql.PooledConnection pc
        end local 1 // javax.sql.ConnectionEvent event
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    4     1  event  Ljavax/sql/ConnectionEvent;
            1    4     2     pc  Ljavax/sql/PooledConnection;
    MethodParameters:
       Name  Flags
      event  

  public void connectionErrorOccurred(javax.sql.ConnectionEvent);
    descriptor: (Ljavax/sql/ConnectionEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // javax.sql.ConnectionEvent event
         0: .line 290
            return
        end local 1 // javax.sql.ConnectionEvent event
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    1     1  event  Ljavax/sql/ConnectionEvent;
    MethodParameters:
       Name  Flags
      event  

  public int getActiveConnections();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 301
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.activeConnections:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            ireturn
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;

  public java.io.PrintWriter getLogWriter();
    descriptor: ()Ljava/io/PrintWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 309
            aload 0 /* this */
            getfield org.h2.jdbcx.JdbcConnectionPool.logWriter:Ljava/io/PrintWriter;
            areturn
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;

  public void setLogWriter(java.io.PrintWriter);
    descriptor: (Ljava/io/PrintWriter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // java.io.PrintWriter logWriter
         0: .line 317
            aload 0 /* this */
            aload 1 /* logWriter */
            putfield org.h2.jdbcx.JdbcConnectionPool.logWriter:Ljava/io/PrintWriter;
         1: .line 318
            return
        end local 1 // java.io.PrintWriter logWriter
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    2     1  logWriter  Ljava/io/PrintWriter;
    MethodParameters:
           Name  Flags
      logWriter  

  public <T> T unwrap(java.lang.Class<T>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // java.lang.Class iface
         0: .line 327
            ldc "unwrap"
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 1 // java.lang.Class iface
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    1     1  iface  Ljava/lang/Class<TT;>;
    Exceptions:
      throws java.sql.SQLException
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Class<TT;>;)TT;
    MethodParameters:
       Name  Flags
      iface  

  public boolean isWrapperFor(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
        start local 1 // java.lang.Class iface
         0: .line 337
            ldc "isWrapperFor"
            invokestatic org.h2.message.DbException.getUnsupportedException:(Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 1 // java.lang.Class iface
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/h2/jdbcx/JdbcConnectionPool;
            0    1     1  iface  Ljava/lang/Class<*>;
    Exceptions:
      throws java.sql.SQLException
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
       Name  Flags
      iface  

  public java.util.logging.Logger getParentLogger();
    descriptor: ()Ljava/util/logging/Logger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.jdbcx.JdbcConnectionPool this
         0: .line 345
            aconst_null
            areturn
        end local 0 // org.h2.jdbcx.JdbcConnectionPool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/jdbcx/JdbcConnectionPool;
}
SourceFile: "JdbcConnectionPool.java"