class io.ebeaninternal.server.query.CQueryBindCapture implements io.ebeaninternal.api.SpiQueryBindCapture
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.ebeaninternal.server.query.CQueryBindCapture
  super_class: java.lang.Object
{
  private static final double multiplier;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.3

  private final java.util.concurrent.locks.ReentrantLock lock;
    descriptor: Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.ebeaninternal.server.query.CQueryPlanManager manager;
    descriptor: Lio/ebeaninternal/server/query/CQueryPlanManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.ebeaninternal.api.SpiQueryPlan queryPlan;
    descriptor: Lio/ebeaninternal/api/SpiQueryPlan;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.ebeaninternal.server.type.bindcapture.BindCapture bindCapture;
    descriptor: Lio/ebeaninternal/server/type/bindcapture/BindCapture;
    flags: (0x0002) ACC_PRIVATE

  private long queryTimeMicros;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long thresholdMicros;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long captureCount;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long lastBindCapture;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(io.ebeaninternal.server.query.CQueryPlanManager, io.ebeaninternal.api.SpiQueryPlan, long);
    descriptor: (Lio/ebeaninternal/server/query/CQueryPlanManager;Lio/ebeaninternal/api/SpiQueryPlan;J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
        start local 1 // io.ebeaninternal.server.query.CQueryPlanManager manager
        start local 2 // io.ebeaninternal.api.SpiQueryPlan queryPlan
        start local 3 // long thresholdMicros
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 14
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield io.ebeaninternal.server.query.CQueryBindCapture.lock:Ljava/util/concurrent/locks/ReentrantLock;
         2: .line 26
            aload 0 /* this */
            aload 1 /* manager */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.manager:Lio/ebeaninternal/server/query/CQueryPlanManager;
         3: .line 27
            aload 0 /* this */
            aload 2 /* queryPlan */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.queryPlan:Lio/ebeaninternal/api/SpiQueryPlan;
         4: .line 28
            aload 0 /* this */
            lload 3 /* thresholdMicros */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.thresholdMicros:J
         5: .line 29
            return
        end local 3 // long thresholdMicros
        end local 2 // io.ebeaninternal.api.SpiQueryPlan queryPlan
        end local 1 // io.ebeaninternal.server.query.CQueryPlanManager manager
        end local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lio/ebeaninternal/server/query/CQueryBindCapture;
            0    6     1          manager  Lio/ebeaninternal/server/query/CQueryPlanManager;
            0    6     2        queryPlan  Lio/ebeaninternal/api/SpiQueryPlan;
            0    6     3  thresholdMicros  J
    MethodParameters:
                 Name  Flags
      manager          
      queryPlan        
      thresholdMicros  

  public boolean collectFor(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
        start local 1 // long timeMicros
         0: .line 36
            lload 1 /* timeMicros */
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.thresholdMicros:J
            lcmp
            ifle 1
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.captureCount:J
            ldc 10
            lcmp
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long timeMicros
        end local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/ebeaninternal/server/query/CQueryBindCapture;
            0    2     1  timeMicros  J
    MethodParameters:
            Name  Flags
      timeMicros  

  public void setBind(io.ebeaninternal.server.type.bindcapture.BindCapture, long, long);
    descriptor: (Lio/ebeaninternal/server/type/bindcapture/BindCapture;JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
        start local 1 // io.ebeaninternal.server.type.bindcapture.BindCapture bindCapture
        start local 2 // long queryTimeMicros
        start local 4 // long startNanos
         0: .line 41
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 43
            aload 0 /* this */
            lload 2 /* queryTimeMicros */
            l2d
            ldc 1.3
            dmul
            invokestatic java.lang.Math.round:(D)J
            putfield io.ebeaninternal.server.query.CQueryBindCapture.thresholdMicros:J
         2: .line 44
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.query.CQueryBindCapture.captureCount:J
            lconst_1
            ladd
            putfield io.ebeaninternal.server.query.CQueryBindCapture.captureCount:J
         3: .line 45
            aload 0 /* this */
            aload 1 /* bindCapture */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.bindCapture:Lio/ebeaninternal/server/type/bindcapture/BindCapture;
         4: .line 46
            aload 0 /* this */
            lload 2 /* queryTimeMicros */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.queryTimeMicros:J
         5: .line 47
            aload 0 /* this */
            invokestatic java.lang.System.currentTimeMillis:()J
            putfield io.ebeaninternal.server.query.CQueryBindCapture.lastBindCapture:J
         6: .line 48
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.manager:Lio/ebeaninternal/server/query/CQueryPlanManager;
            aload 0 /* this */
            lload 4 /* startNanos */
            invokevirtual io.ebeaninternal.server.query.CQueryPlanManager.notifyBindCapture:(Lio/ebeaninternal/server/query/CQueryBindCapture;J)V
         7: .line 49
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 6
         9: .line 50
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        10: .line 51
            aload 6
            athrow
        11: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        12: .line 52
            return
        end local 4 // long startNanos
        end local 2 // long queryTimeMicros
        end local 1 // io.ebeaninternal.server.type.bindcapture.BindCapture bindCapture
        end local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lio/ebeaninternal/server/query/CQueryBindCapture;
            0   13     1      bindCapture  Lio/ebeaninternal/server/type/bindcapture/BindCapture;
            0   13     2  queryTimeMicros  J
            0   13     4       startNanos  J
      Exception table:
        from    to  target  type
           1     8       8  any
    MethodParameters:
                 Name  Flags
      bindCapture      
      queryTimeMicros  
      startNanos       

  public void queryPlanInit(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
        start local 1 // long thresholdMicros
         0: .line 57
            aload 0 /* this */
            lload 1 /* thresholdMicros */
            putfield io.ebeaninternal.server.query.CQueryBindCapture.thresholdMicros:J
         1: .line 58
            aload 0 /* this */
            lconst_0
            putfield io.ebeaninternal.server.query.CQueryBindCapture.captureCount:J
         2: .line 59
            return
        end local 1 // long thresholdMicros
        end local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lio/ebeaninternal/server/query/CQueryBindCapture;
            0    3     1  thresholdMicros  J
    MethodParameters:
                 Name  Flags
      thresholdMicros  

  public boolean collectQueryPlan(io.ebeaninternal.server.query.CQueryPlanRequest);
    descriptor: (Lio/ebeaninternal/server/query/CQueryPlanRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
        start local 1 // io.ebeaninternal.server.query.CQueryPlanRequest request
         0: .line 65
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.bindCapture:Lio/ebeaninternal/server/type/bindcapture/BindCapture;
            ifnull 1
            aload 1 /* request */
            invokevirtual io.ebeaninternal.server.query.CQueryPlanRequest.getSince:()J
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.lastBindCapture:J
            lcmp
            ifge 2
         1: .line 67
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.bindCapture:Lio/ebeaninternal/server/type/bindcapture/BindCapture;
            astore 2 /* last */
        start local 2 // io.ebeaninternal.server.type.bindcapture.BindCapture last
         3: .line 72
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.manager:Lio/ebeaninternal/server/query/CQueryPlanManager;
            aload 1 /* request */
            invokevirtual io.ebeaninternal.server.query.CQueryPlanRequest.getConnection:()Ljava/sql/Connection;
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.queryPlan:Lio/ebeaninternal/api/SpiQueryPlan;
            aload 2 /* last */
            invokevirtual io.ebeaninternal.server.query.CQueryPlanManager.collectPlan:(Ljava/sql/Connection;Lio/ebeaninternal/api/SpiQueryPlan;Lio/ebeaninternal/server/type/bindcapture/BindCapture;)Lio/ebeaninternal/api/SpiDbQueryPlan;
            astore 3 /* queryPlan */
        start local 3 // io.ebeaninternal.api.SpiDbQueryPlan queryPlan
         4: .line 73
            aload 3 /* queryPlan */
            ifnull 8
         5: .line 74
            aload 1 /* request */
            aload 3 /* queryPlan */
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.queryTimeMicros:J
            aload 0 /* this */
            getfield io.ebeaninternal.server.query.CQueryBindCapture.captureCount:J
            invokeinterface io.ebeaninternal.api.SpiDbQueryPlan.with:(JJ)Lio/ebeaninternal/api/SpiDbQueryPlan;
            invokevirtual io.ebeaninternal.server.query.CQueryPlanRequest.add:(Lio/ebean/meta/MetaQueryPlan;)V
         6: .line 76
            aload 0 /* this */
            ldc 9223372036854775807
            putfield io.ebeaninternal.server.query.CQueryBindCapture.thresholdMicros:J
         7: .line 77
            iconst_1
            ireturn
         8: .line 79
      StackMap locals: io.ebeaninternal.server.type.bindcapture.BindCapture io.ebeaninternal.api.SpiDbQueryPlan
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // io.ebeaninternal.api.SpiDbQueryPlan queryPlan
        end local 2 // io.ebeaninternal.server.type.bindcapture.BindCapture last
        end local 1 // io.ebeaninternal.server.query.CQueryPlanRequest request
        end local 0 // io.ebeaninternal.server.query.CQueryBindCapture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lio/ebeaninternal/server/query/CQueryBindCapture;
            0    9     1    request  Lio/ebeaninternal/server/query/CQueryPlanRequest;
            3    9     2       last  Lio/ebeaninternal/server/type/bindcapture/BindCapture;
            4    9     3  queryPlan  Lio/ebeaninternal/api/SpiDbQueryPlan;
    MethodParameters:
         Name  Flags
      request  
}
SourceFile: "CQueryBindCapture.java"