public class ch.qos.logback.core.util.FixedDelay implements ch.qos.logback.core.util.DelayStrategy
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: ch.qos.logback.core.util.FixedDelay
  super_class: java.lang.Object
{
  private final long subsequentDelay;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // ch.qos.logback.core.util.FixedDelay this
        start local 1 // long initialDelay
        start local 3 // long subsequentDelay
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            lload 1 /* initialDelay */
            putfield ch.qos.logback.core.util.FixedDelay.nextDelay:J
         2: .line 36
            aload 0 /* this */
            lload 3 /* subsequentDelay */
            putfield ch.qos.logback.core.util.FixedDelay.subsequentDelay:J
         3: .line 37
            return
        end local 3 // long subsequentDelay
        end local 1 // long initialDelay
        end local 0 // ch.qos.logback.core.util.FixedDelay this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lch/qos/logback/core/util/FixedDelay;
            0    4     1     initialDelay  J
            0    4     3  subsequentDelay  J
    MethodParameters:
                 Name  Flags
      initialDelay     
      subsequentDelay  

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // ch.qos.logback.core.util.FixedDelay this
        start local 1 // int delay
         0: .line 46
            aload 0 /* this */
            iload 1 /* delay */
            i2l
            iload 1 /* delay */
            i2l
            invokespecial ch.qos.logback.core.util.FixedDelay.<init>:(JJ)V
         1: .line 47
            return
        end local 1 // int delay
        end local 0 // ch.qos.logback.core.util.FixedDelay this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lch/qos/logback/core/util/FixedDelay;
            0    2     1  delay  I
    MethodParameters:
       Name  Flags
      delay  

  public long nextDelay();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // ch.qos.logback.core.util.FixedDelay this
         0: .line 53
            aload 0 /* this */
            getfield ch.qos.logback.core.util.FixedDelay.nextDelay:J
            lstore 1 /* delay */
        start local 1 // long delay
         1: .line 54
            aload 0 /* this */
            aload 0 /* this */
            getfield ch.qos.logback.core.util.FixedDelay.subsequentDelay:J
            putfield ch.qos.logback.core.util.FixedDelay.nextDelay:J
         2: .line 55
            lload 1 /* delay */
            lreturn
        end local 1 // long delay
        end local 0 // ch.qos.logback.core.util.FixedDelay this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lch/qos/logback/core/util/FixedDelay;
            1    3     1  delay  J
}
SourceFile: "FixedDelay.java"