public abstract class com.google.common.util.concurrent.AbstractScheduledService implements com.google.common.util.concurrent.Service
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.util.concurrent.AbstractScheduledService
  super_class: java.lang.Object
{
  private static final java.util.logging.Logger logger;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final com.google.common.util.concurrent.AbstractService delegate;
    descriptor: Lcom/google/common/util/concurrent/AbstractService;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 101
            ldc Lcom/google/common/util/concurrent/AbstractScheduledService;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
            putstatic com.google.common.util.concurrent.AbstractScheduledService.logger:Ljava/util/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 282
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 167
            aload 0 /* this */
            new com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate
            dup
            aload 0 /* this */
            invokespecial com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate.<init>:(Lcom/google/common/util/concurrent/AbstractScheduledService;)V
            putfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
         2: .line 282
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  protected abstract void runOneIteration();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.lang.Exception

  protected void startUp();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 296
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;
    Exceptions:
      throws java.lang.Exception

  protected void shutDown();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 303
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;
    Exceptions:
      throws java.lang.Exception

  protected abstract com.google.common.util.concurrent.AbstractScheduledService$Scheduler scheduler();
    descriptor: ()Lcom/google/common/util/concurrent/AbstractScheduledService$Scheduler;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected java.util.concurrent.ScheduledExecutorService executor();
    descriptor: ()Ljava/util/concurrent/ScheduledExecutorService;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 335
            new com.google.common.util.concurrent.AbstractScheduledService$1ThreadFactoryImpl
            dup
            aload 0 /* this */
            invokespecial com.google.common.util.concurrent.AbstractScheduledService$1ThreadFactoryImpl.<init>:(Lcom/google/common/util/concurrent/AbstractScheduledService;)V
            invokestatic java.util.concurrent.Executors.newSingleThreadScheduledExecutor:(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;
         1: .line 334
            astore 1 /* executor */
        start local 1 // java.util.concurrent.ScheduledExecutorService executor
         2: .line 341
            aload 0 /* this */
         3: .line 342
            new com.google.common.util.concurrent.AbstractScheduledService$1
            dup
            aload 0 /* this */
            aload 1 /* executor */
            invokespecial com.google.common.util.concurrent.AbstractScheduledService$1.<init>:(Lcom/google/common/util/concurrent/AbstractScheduledService;Ljava/util/concurrent/ScheduledExecutorService;)V
         4: .line 353
            invokestatic com.google.common.util.concurrent.MoreExecutors.directExecutor:()Ljava/util/concurrent/Executor;
         5: .line 341
            invokevirtual com.google.common.util.concurrent.AbstractScheduledService.addListener:(Lcom/google/common/util/concurrent/Service$Listener;Ljava/util/concurrent/Executor;)V
         6: .line 354
            aload 1 /* executor */
            areturn
        end local 1 // java.util.concurrent.ScheduledExecutorService executor
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/google/common/util/concurrent/AbstractScheduledService;
            2    7     1  executor  Ljava/util/concurrent/ScheduledExecutorService;

  protected java.lang.String serviceName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 364
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 369
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.AbstractScheduledService.serviceName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " ["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.AbstractScheduledService.state:()Lcom/google/common/util/concurrent/Service$State;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final boolean isRunning();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 374
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.isRunning:()Z
            ireturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final com.google.common.util.concurrent.Service$State state();
    descriptor: ()Lcom/google/common/util/concurrent/Service$State;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 379
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.state:()Lcom/google/common/util/concurrent/Service$State;
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final void addListener(com.google.common.util.concurrent.Service$Listener, java.util.concurrent.Executor);
    descriptor: (Lcom/google/common/util/concurrent/Service$Listener;Ljava/util/concurrent/Executor;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
        start local 1 // com.google.common.util.concurrent.Service$Listener listener
        start local 2 // java.util.concurrent.Executor executor
         0: .line 385
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            aload 1 /* listener */
            aload 2 /* executor */
            invokevirtual com.google.common.util.concurrent.AbstractService.addListener:(Lcom/google/common/util/concurrent/Service$Listener;Ljava/util/concurrent/Executor;)V
         1: .line 386
            return
        end local 2 // java.util.concurrent.Executor executor
        end local 1 // com.google.common.util.concurrent.Service$Listener listener
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/google/common/util/concurrent/AbstractScheduledService;
            0    2     1  listener  Lcom/google/common/util/concurrent/Service$Listener;
            0    2     2  executor  Ljava/util/concurrent/Executor;
    MethodParameters:
          Name  Flags
      listener  
      executor  

  public final java.lang.Throwable failureCause();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 391
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.failureCause:()Ljava/lang/Throwable;
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final com.google.common.util.concurrent.Service startAsync();
    descriptor: ()Lcom/google/common/util/concurrent/Service;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 398
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.startAsync:()Lcom/google/common/util/concurrent/Service;
            pop
         1: .line 399
            aload 0 /* this */
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()

  public final com.google.common.util.concurrent.Service stopAsync();
    descriptor: ()Lcom/google/common/util/concurrent/Service;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 406
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.stopAsync:()Lcom/google/common/util/concurrent/Service;
            pop
         1: .line 407
            aload 0 /* this */
            areturn
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()

  public final void awaitRunning();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 413
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.awaitRunning:()V
         1: .line 414
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final void awaitRunning(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 419
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual com.google.common.util.concurrent.AbstractService.awaitRunning:(JLjava/util/concurrent/TimeUnit;)V
         1: .line 420
            return
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/common/util/concurrent/AbstractScheduledService;
            0    2     1  timeout  J
            0    2     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.util.concurrent.TimeoutException
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public final void awaitTerminated();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
         0: .line 425
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            invokevirtual com.google.common.util.concurrent.AbstractService.awaitTerminated:()V
         1: .line 426
            return
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/util/concurrent/AbstractScheduledService;

  public final void awaitTerminated(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.google.common.util.concurrent.AbstractScheduledService this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 431
            aload 0 /* this */
            getfield com.google.common.util.concurrent.AbstractScheduledService.delegate:Lcom/google/common/util/concurrent/AbstractService;
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual com.google.common.util.concurrent.AbstractService.awaitTerminated:(JLjava/util/concurrent/TimeUnit;)V
         1: .line 432
            return
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // com.google.common.util.concurrent.AbstractScheduledService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/common/util/concurrent/AbstractScheduledService;
            0    2     1  timeout  J
            0    2     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.util.concurrent.TimeoutException
    MethodParameters:
         Name  Flags
      timeout  
      unit     
}
SourceFile: "AbstractScheduledService.java"
NestMembers:
  com.google.common.util.concurrent.AbstractScheduledService$1  com.google.common.util.concurrent.AbstractScheduledService$1ThreadFactoryImpl  com.google.common.util.concurrent.AbstractScheduledService$CustomScheduler  com.google.common.util.concurrent.AbstractScheduledService$CustomScheduler$ReschedulableCallable  com.google.common.util.concurrent.AbstractScheduledService$CustomScheduler$Schedule  com.google.common.util.concurrent.AbstractScheduledService$Scheduler  com.google.common.util.concurrent.AbstractScheduledService$Scheduler$1  com.google.common.util.concurrent.AbstractScheduledService$Scheduler$2  com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate  com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate$1  com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate$2  com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate$3  com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate$Task
InnerClasses:
  com.google.common.util.concurrent.AbstractScheduledService$1
  ThreadFactoryImpl = com.google.common.util.concurrent.AbstractScheduledService$1ThreadFactoryImpl
  public abstract CustomScheduler = com.google.common.util.concurrent.AbstractScheduledService$CustomScheduler of com.google.common.util.concurrent.AbstractScheduledService
  public abstract Scheduler = com.google.common.util.concurrent.AbstractScheduledService$Scheduler of com.google.common.util.concurrent.AbstractScheduledService
  private final ServiceDelegate = com.google.common.util.concurrent.AbstractScheduledService$ServiceDelegate of com.google.common.util.concurrent.AbstractScheduledService
  public abstract Listener = com.google.common.util.concurrent.Service$Listener of com.google.common.util.concurrent.Service
  public abstract State = com.google.common.util.concurrent.Service$State of com.google.common.util.concurrent.Service
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()