class io.ebeaninternal.server.profile.DCountMetric implements io.ebean.metric.CountMetric
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.ebeaninternal.server.profile.DCountMetric
  super_class: java.lang.Object
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.LongAdder count;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
        start local 1 // java.lang.String name
         0: .line 18
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 16
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
         2: .line 19
            aload 0 /* this */
            aload 1 /* name */
            putfield io.ebeaninternal.server.profile.DCountMetric.name:Ljava/lang/String;
         3: .line 20
            return
        end local 1 // java.lang.String name
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/ebeaninternal/server/profile/DCountMetric;
            0    4     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void add(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
        start local 1 // long value
         0: .line 27
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            lload 1 /* value */
            invokevirtual java.util.concurrent.atomic.LongAdder.add:(J)V
         1: .line 28
            return
        end local 1 // long value
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/ebeaninternal/server/profile/DCountMetric;
            0    2     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public void increment();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
         0: .line 31
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
         1: .line 32
            return
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/profile/DCountMetric;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
         0: .line 36
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.sum:()J
            lconst_0
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/profile/DCountMetric;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
         0: .line 41
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.reset:()V
         1: .line 42
            return
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/profile/DCountMetric;

  public long get(boolean);
    descriptor: (Z)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
        start local 1 // boolean reset
         0: .line 46
            iload 1 /* reset */
            ifeq 1
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.sumThenReset:()J
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.sum:()J
      StackMap locals:
      StackMap stack: long
         2: lreturn
        end local 1 // boolean reset
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/ebeaninternal/server/profile/DCountMetric;
            0    3     1  reset  Z
    MethodParameters:
       Name  Flags
      reset  

  public void visit(io.ebean.meta.MetricVisitor);
    descriptor: (Lio/ebean/meta/MetricVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.ebeaninternal.server.profile.DCountMetric this
        start local 1 // io.ebean.meta.MetricVisitor visitor
         0: .line 52
            aload 1 /* visitor */
            invokeinterface io.ebean.meta.MetricVisitor.isReset:()Z
            ifeq 1
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.sumThenReset:()J
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.count:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.sum:()J
      StackMap locals:
      StackMap stack: long
         2: lstore 2 /* val */
        start local 2 // long val
         3: .line 53
            lload 2 /* val */
            lconst_0
            lcmp
            ifle 5
         4: .line 54
            aload 1 /* visitor */
            new io.ebeaninternal.server.profile.DCountMetric$DCountMetricStats
            dup
            aload 0 /* this */
            getfield io.ebeaninternal.server.profile.DCountMetric.name:Ljava/lang/String;
            lload 2 /* val */
            invokespecial io.ebeaninternal.server.profile.DCountMetric$DCountMetricStats.<init>:(Ljava/lang/String;J)V
            invokeinterface io.ebean.meta.MetricVisitor.visitCount:(Lio/ebean/meta/MetaCountMetric;)V
         5: .line 56
      StackMap locals: long
      StackMap stack:
            return
        end local 2 // long val
        end local 1 // io.ebean.meta.MetricVisitor visitor
        end local 0 // io.ebeaninternal.server.profile.DCountMetric this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/profile/DCountMetric;
            0    6     1  visitor  Lio/ebean/meta/MetricVisitor;
            3    6     2      val  J
    MethodParameters:
         Name  Flags
      visitor  
}
SourceFile: "DCountMetric.java"
NestMembers:
  io.ebeaninternal.server.profile.DCountMetric$DCountMetricStats
InnerClasses:
  private DCountMetricStats = io.ebeaninternal.server.profile.DCountMetric$DCountMetricStats of io.ebeaninternal.server.profile.DCountMetric