public abstract class com.google.common.util.concurrent.AbstractScheduledService$Scheduler
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.util.concurrent.AbstractScheduledService$Scheduler
  super_class: java.lang.Object
{
  public static com.google.common.util.concurrent.AbstractScheduledService$Scheduler newFixedDelaySchedule(long, long, java.util.concurrent.TimeUnit);
    descriptor: (JJLjava/util/concurrent/TimeUnit;)Lcom/google/common/util/concurrent/AbstractScheduledService$Scheduler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // long initialDelay
        start local 2 // long delay
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 127
            aload 4 /* unit */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 128
            lload 2 /* delay */
            lconst_0
            lcmp
            ifle 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ldc "delay must be > 0, found %s"
            lload 2 /* delay */
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;J)V
         4: .line 129
            new com.google.common.util.concurrent.AbstractScheduledService$Scheduler$1
            dup
            lload 0 /* initialDelay */
            lload 2 /* delay */
            aload 4 /* unit */
            invokespecial com.google.common.util.concurrent.AbstractScheduledService$Scheduler$1.<init>:(JJLjava/util/concurrent/TimeUnit;)V
            areturn
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long delay
        end local 0 // long initialDelay
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0  initialDelay  J
            0    5     2         delay  J
            0    5     4          unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
              Name  Flags
      initialDelay  final
      delay         final
      unit          final

  public static com.google.common.util.concurrent.AbstractScheduledService$Scheduler newFixedRateSchedule(long, long, java.util.concurrent.TimeUnit);
    descriptor: (JJLjava/util/concurrent/TimeUnit;)Lcom/google/common/util/concurrent/AbstractScheduledService$Scheduler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // long initialDelay
        start local 2 // long period
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 148
            aload 4 /* unit */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 149
            lload 2 /* period */
            lconst_0
            lcmp
            ifle 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ldc "period must be > 0, found %s"
            lload 2 /* period */
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;J)V
         4: .line 150
            new com.google.common.util.concurrent.AbstractScheduledService$Scheduler$2
            dup
            lload 0 /* initialDelay */
            lload 2 /* period */
            aload 4 /* unit */
            invokespecial com.google.common.util.concurrent.AbstractScheduledService$Scheduler$2.<init>:(JJLjava/util/concurrent/TimeUnit;)V
            areturn
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long period
        end local 0 // long initialDelay
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0  initialDelay  J
            0    5     2        period  J
            0    5     4          unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
              Name  Flags
      initialDelay  final
      period        final
      unit          final

  abstract java.util.concurrent.Future<?> schedule(com.google.common.util.concurrent.AbstractService, java.util.concurrent.ScheduledExecutorService, java.lang.Runnable);
    descriptor: (Lcom/google/common/util/concurrent/AbstractService;Ljava/util/concurrent/ScheduledExecutorService;Ljava/lang/Runnable;)Ljava/util/concurrent/Future;
    flags: (0x0400) ACC_ABSTRACT
    Signature: (Lcom/google/common/util/concurrent/AbstractService;Ljava/util/concurrent/ScheduledExecutorService;Ljava/lang/Runnable;)Ljava/util/concurrent/Future<*>;
    MethodParameters:
          Name  Flags
      service   
      executor  
      runnable  

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService$Scheduler this
         0: .line 163
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService$Scheduler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService$Scheduler;
}
SourceFile: "AbstractScheduledService.java"
NestHost: com.google.common.util.concurrent.AbstractScheduledService
InnerClasses:
  public abstract Scheduler = com.google.common.util.concurrent.AbstractScheduledService$Scheduler of com.google.common.util.concurrent.AbstractScheduledService
  com.google.common.util.concurrent.AbstractScheduledService$Scheduler$1
  com.google.common.util.concurrent.AbstractScheduledService$Scheduler$2