public class org.ehcache.impl.internal.util.Pacer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.ehcache.impl.internal.util.Pacer
  super_class: java.lang.Object
{
  private final java.util.concurrent.atomic.AtomicLong nextLogTime;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.ehcache.core.spi.time.TimeSource timeSource;
    descriptor: Lorg/ehcache/core/spi/time/TimeSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long delay;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.ehcache.core.spi.time.TimeSource, long);
    descriptor: (Lorg/ehcache/core/spi/time/TimeSource;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.ehcache.impl.internal.util.Pacer this
        start local 1 // org.ehcache.core.spi.time.TimeSource timeSource
        start local 2 // long delay
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* timeSource */
            putfield org.ehcache.impl.internal.util.Pacer.timeSource:Lorg/ehcache/core/spi/time/TimeSource;
         2: .line 38
            aload 0 /* this */
            lload 2 /* delay */
            putfield org.ehcache.impl.internal.util.Pacer.delay:J
         3: .line 39
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            aload 1 /* timeSource */
            invokeinterface org.ehcache.core.spi.time.TimeSource.getTimeMillis:()J
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:(J)V
            putfield org.ehcache.impl.internal.util.Pacer.nextLogTime:Ljava/util/concurrent/atomic/AtomicLong;
         4: .line 40
            return
        end local 2 // long delay
        end local 1 // org.ehcache.core.spi.time.TimeSource timeSource
        end local 0 // org.ehcache.impl.internal.util.Pacer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/ehcache/impl/internal/util/Pacer;
            0    5     1  timeSource  Lorg/ehcache/core/spi/time/TimeSource;
            0    5     2       delay  J
    MethodParameters:
            Name  Flags
      timeSource  
      delay       

  public void pacedCall(java.lang.Runnable, java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=3
        start local 0 // org.ehcache.impl.internal.util.Pacer this
        start local 1 // java.lang.Runnable call
        start local 2 // java.lang.Runnable orElse
         0: .line 57
            aload 0 /* this */
            getfield org.ehcache.impl.internal.util.Pacer.timeSource:Lorg/ehcache/core/spi/time/TimeSource;
            invokeinterface org.ehcache.core.spi.time.TimeSource.getTimeMillis:()J
            lstore 3 /* now */
        start local 3 // long now
         1: .line 58
            aload 0 /* this */
            getfield org.ehcache.impl.internal.util.Pacer.nextLogTime:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 5 /* end */
        start local 5 // long end
         2: .line 59
            lload 3 /* now */
            lload 5 /* end */
            lcmp
            iflt 5
            aload 0 /* this */
            getfield org.ehcache.impl.internal.util.Pacer.nextLogTime:Ljava/util/concurrent/atomic/AtomicLong;
            lload 5 /* end */
            lload 3 /* now */
            aload 0 /* this */
            getfield org.ehcache.impl.internal.util.Pacer.delay:J
            ladd
            invokevirtual java.util.concurrent.atomic.AtomicLong.compareAndSet:(JJ)Z
            ifeq 5
         3: .line 60
            aload 1 /* call */
            invokeinterface java.lang.Runnable.run:()V
         4: .line 61
            goto 6
         5: .line 62
      StackMap locals: long long
      StackMap stack:
            aload 2 /* orElse */
            invokeinterface java.lang.Runnable.run:()V
         6: .line 64
      StackMap locals:
      StackMap stack:
            return
        end local 5 // long end
        end local 3 // long now
        end local 2 // java.lang.Runnable orElse
        end local 1 // java.lang.Runnable call
        end local 0 // org.ehcache.impl.internal.util.Pacer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/ehcache/impl/internal/util/Pacer;
            0    7     1    call  Ljava/lang/Runnable;
            0    7     2  orElse  Ljava/lang/Runnable;
            1    7     3     now  J
            2    7     5     end  J
    MethodParameters:
        Name  Flags
      call    
      orElse  
}
SourceFile: "Pacer.java"