public final class io.reactivex.internal.schedulers.SingleScheduler extends io.reactivex.Scheduler
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.schedulers.SingleScheduler
  super_class: io.reactivex.Scheduler
{
  final java.util.concurrent.ThreadFactory threadFactory;
    descriptor: Ljava/util/concurrent/ThreadFactory;
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.atomic.AtomicReference<java.util.concurrent.ScheduledExecutorService> executor;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Ljava/util/concurrent/ScheduledExecutorService;>;

  private static final java.lang.String KEY_SINGLE_PRIORITY;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "rx2.single-priority"

  private static final java.lang.String THREAD_NAME_PREFIX;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "RxSingleScheduler"

  static final io.reactivex.internal.schedulers.RxThreadFactory SINGLE_THREAD_FACTORY;
    descriptor: Lio/reactivex/internal/schedulers/RxThreadFactory;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final java.util.concurrent.ScheduledExecutorService SHUTDOWN;
    descriptor: Ljava/util/concurrent/ScheduledExecutorService;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=1, args_size=0
         0: .line 42
            iconst_0
            invokestatic java.util.concurrent.Executors.newScheduledThreadPool:(I)Ljava/util/concurrent/ScheduledExecutorService;
            putstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
         1: .line 43
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
            invokeinterface java.util.concurrent.ScheduledExecutorService.shutdown:()V
         2: .line 45
            iconst_1
            bipush 10
         3: .line 46
            ldc "rx2.single-priority"
            iconst_5
            invokestatic java.lang.Integer.getInteger:(Ljava/lang/String;I)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
         4: .line 45
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 0 /* priority */
        start local 0 // int priority
         5: .line 48
            new io.reactivex.internal.schedulers.RxThreadFactory
            dup
            ldc "RxSingleScheduler"
            iload 0 /* priority */
            iconst_1
            invokespecial io.reactivex.internal.schedulers.RxThreadFactory.<init>:(Ljava/lang/String;IZ)V
            putstatic io.reactivex.internal.schedulers.SingleScheduler.SINGLE_THREAD_FACTORY:Lio/reactivex/internal/schedulers/RxThreadFactory;
        end local 0 // int priority
         6: .line 49
            return
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            5    6     0  priority  I

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
         0: .line 52
            aload 0 /* this */
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SINGLE_THREAD_FACTORY:Lio/reactivex/internal/schedulers/RxThreadFactory;
            invokespecial io.reactivex.internal.schedulers.SingleScheduler.<init>:(Ljava/util/concurrent/ThreadFactory;)V
         1: .line 53
            return
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/schedulers/SingleScheduler;

  public void <init>(java.util.concurrent.ThreadFactory);
    descriptor: (Ljava/util/concurrent/ThreadFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
        start local 1 // java.util.concurrent.ThreadFactory threadFactory
         0: .line 61
            aload 0 /* this */
            invokespecial io.reactivex.Scheduler.<init>:()V
         1: .line 31
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
         2: .line 62
            aload 0 /* this */
            aload 1 /* threadFactory */
            putfield io.reactivex.internal.schedulers.SingleScheduler.threadFactory:Ljava/util/concurrent/ThreadFactory;
         3: .line 63
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* threadFactory */
            invokestatic io.reactivex.internal.schedulers.SingleScheduler.createExecutor:(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         4: .line 64
            return
        end local 1 // java.util.concurrent.ThreadFactory threadFactory
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/reactivex/internal/schedulers/SingleScheduler;
            0    5     1  threadFactory  Ljava/util/concurrent/ThreadFactory;
    MethodParameters:
               Name  Flags
      threadFactory  

  static java.util.concurrent.ScheduledExecutorService createExecutor(java.util.concurrent.ThreadFactory);
    descriptor: (Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.ThreadFactory threadFactory
         0: .line 67
            aload 0 /* threadFactory */
            invokestatic io.reactivex.internal.schedulers.SchedulerPoolFactory.create:(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;
            areturn
        end local 0 // java.util.concurrent.ThreadFactory threadFactory
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0  threadFactory  Ljava/util/concurrent/ThreadFactory;
    MethodParameters:
               Name  Flags
      threadFactory  

  public void start();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
         0: .line 72
            aconst_null
            astore 1 /* next */
        start local 1 // java.util.concurrent.ScheduledExecutorService next
         1: .line 74
      StackMap locals: java.util.concurrent.ScheduledExecutorService
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            astore 2 /* current */
        start local 2 // java.util.concurrent.ScheduledExecutorService current
         2: .line 75
            aload 2 /* current */
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
            if_acmpeq 6
         3: .line 76
            aload 1 /* next */
            ifnull 5
         4: .line 77
            aload 1 /* next */
            invokeinterface java.util.concurrent.ScheduledExecutorService.shutdown:()V
         5: .line 79
      StackMap locals: java.util.concurrent.ScheduledExecutorService
      StackMap stack:
            return
         6: .line 81
      StackMap locals:
      StackMap stack:
            aload 1 /* next */
            ifnonnull 8
         7: .line 82
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.threadFactory:Ljava/util/concurrent/ThreadFactory;
            invokestatic io.reactivex.internal.schedulers.SingleScheduler.createExecutor:(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;
            astore 1 /* next */
         8: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            aload 2 /* current */
            aload 1 /* next */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 1
         9: .line 85
            return
        end local 2 // java.util.concurrent.ScheduledExecutorService current
        end local 1 // java.util.concurrent.ScheduledExecutorService next
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/reactivex/internal/schedulers/SingleScheduler;
            1   10     1     next  Ljava/util/concurrent/ScheduledExecutorService;
            2   10     2  current  Ljava/util/concurrent/ScheduledExecutorService;

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
         0: .line 93
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            astore 1 /* current */
        start local 1 // java.util.concurrent.ScheduledExecutorService current
         1: .line 94
            aload 1 /* current */
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
            if_acmpeq 5
         2: .line 95
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            astore 1 /* current */
         3: .line 96
            aload 1 /* current */
            getstatic io.reactivex.internal.schedulers.SingleScheduler.SHUTDOWN:Ljava/util/concurrent/ScheduledExecutorService;
            if_acmpeq 5
         4: .line 97
            aload 1 /* current */
            invokeinterface java.util.concurrent.ScheduledExecutorService.shutdownNow:()Ljava/util/List;
            pop
         5: .line 100
      StackMap locals: java.util.concurrent.ScheduledExecutorService
      StackMap stack:
            return
        end local 1 // java.util.concurrent.ScheduledExecutorService current
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/reactivex/internal/schedulers/SingleScheduler;
            1    6     1  current  Ljava/util/concurrent/ScheduledExecutorService;

  public io.reactivex.Scheduler$Worker createWorker();
    descriptor: ()Lio/reactivex/Scheduler$Worker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
         0: .line 105
            new io.reactivex.internal.schedulers.SingleScheduler$ScheduledWorker
            dup
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            invokespecial io.reactivex.internal.schedulers.SingleScheduler$ScheduledWorker.<init>:(Ljava/util/concurrent/ScheduledExecutorService;)V
            areturn
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/schedulers/SingleScheduler;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()

  public io.reactivex.disposables.Disposable scheduleDirect(java.lang.Runnable, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
        start local 1 // java.lang.Runnable run
        start local 2 // long delay
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 111
            new io.reactivex.internal.schedulers.ScheduledDirectTask
            dup
            aload 1 /* run */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onSchedule:(Ljava/lang/Runnable;)Ljava/lang/Runnable;
            invokespecial io.reactivex.internal.schedulers.ScheduledDirectTask.<init>:(Ljava/lang/Runnable;)V
            astore 5 /* task */
        start local 5 // io.reactivex.internal.schedulers.ScheduledDirectTask task
         1: .line 114
            lload 2 /* delay */
            lconst_0
            lcmp
            ifgt 4
         2: .line 115
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            aload 5 /* task */
            invokeinterface java.util.concurrent.ScheduledExecutorService.submit:(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
            astore 6 /* f */
        start local 6 // java.util.concurrent.Future f
         3: .line 116
            goto 5
        end local 6 // java.util.concurrent.Future f
         4: .line 117
      StackMap locals: io.reactivex.internal.schedulers.ScheduledDirectTask
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            aload 5 /* task */
            lload 2 /* delay */
            aload 4 /* unit */
            invokeinterface java.util.concurrent.ScheduledExecutorService.schedule:(Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;
            astore 6 /* f */
        start local 6 // java.util.concurrent.Future f
         5: .line 119
      StackMap locals: java.util.concurrent.Future
      StackMap stack:
            aload 5 /* task */
            aload 6 /* f */
            invokevirtual io.reactivex.internal.schedulers.ScheduledDirectTask.setFuture:(Ljava/util/concurrent/Future;)V
         6: .line 120
            aload 5 /* task */
         7: areturn
        end local 6 // java.util.concurrent.Future f
         8: .line 121
      StackMap locals: io.reactivex.internal.schedulers.SingleScheduler java.lang.Runnable long java.util.concurrent.TimeUnit io.reactivex.internal.schedulers.ScheduledDirectTask
      StackMap stack: java.util.concurrent.RejectedExecutionException
            astore 6 /* ex */
        start local 6 // java.util.concurrent.RejectedExecutionException ex
         9: .line 122
            aload 6 /* ex */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        10: .line 123
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            areturn
        end local 6 // java.util.concurrent.RejectedExecutionException ex
        end local 5 // io.reactivex.internal.schedulers.ScheduledDirectTask task
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long delay
        end local 1 // java.lang.Runnable run
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lio/reactivex/internal/schedulers/SingleScheduler;
            0   11     1    run  Ljava/lang/Runnable;
            0   11     2  delay  J
            0   11     4   unit  Ljava/util/concurrent/TimeUnit;
            1   11     5   task  Lio/reactivex/internal/schedulers/ScheduledDirectTask;
            3    4     6      f  Ljava/util/concurrent/Future<*>;
            5    8     6      f  Ljava/util/concurrent/Future<*>;
            9   11     6     ex  Ljava/util/concurrent/RejectedExecutionException;
      Exception table:
        from    to  target  type
           1     7       8  Class java.util.concurrent.RejectedExecutionException
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
      1:
      2:
    MethodParameters:
       Name  Flags
      run    
      delay  
      unit   

  public io.reactivex.disposables.Disposable schedulePeriodicallyDirect(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=12, args_size=5
        start local 0 // io.reactivex.internal.schedulers.SingleScheduler this
        start local 1 // java.lang.Runnable run
        start local 2 // long initialDelay
        start local 4 // long period
        start local 6 // java.util.concurrent.TimeUnit unit
         0: .line 130
            aload 1 /* run */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onSchedule:(Ljava/lang/Runnable;)Ljava/lang/Runnable;
            astore 7 /* decoratedRun */
        start local 7 // java.lang.Runnable decoratedRun
         1: .line 131
            lload 4 /* period */
            lconst_0
            lcmp
            ifgt 14
         2: .line 133
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            astore 8 /* exec */
        start local 8 // java.util.concurrent.ScheduledExecutorService exec
         3: .line 135
            new io.reactivex.internal.schedulers.InstantPeriodicTask
            dup
            aload 7 /* decoratedRun */
            aload 8 /* exec */
            invokespecial io.reactivex.internal.schedulers.InstantPeriodicTask.<init>:(Ljava/lang/Runnable;Ljava/util/concurrent/ExecutorService;)V
            astore 9 /* periodicWrapper */
        start local 9 // io.reactivex.internal.schedulers.InstantPeriodicTask periodicWrapper
         4: .line 138
            lload 2 /* initialDelay */
            lconst_0
            lcmp
            ifgt 7
         5: .line 139
            aload 8 /* exec */
            aload 9 /* periodicWrapper */
            invokeinterface java.util.concurrent.ScheduledExecutorService.submit:(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
            astore 10 /* f */
        start local 10 // java.util.concurrent.Future f
         6: .line 140
            goto 8
        end local 10 // java.util.concurrent.Future f
         7: .line 141
      StackMap locals: java.lang.Runnable java.util.concurrent.ScheduledExecutorService io.reactivex.internal.schedulers.InstantPeriodicTask
      StackMap stack:
            aload 8 /* exec */
            aload 9 /* periodicWrapper */
            lload 2 /* initialDelay */
            aload 6 /* unit */
            invokeinterface java.util.concurrent.ScheduledExecutorService.schedule:(Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;
            astore 10 /* f */
        start local 10 // java.util.concurrent.Future f
         8: .line 143
      StackMap locals: java.util.concurrent.Future
      StackMap stack:
            aload 9 /* periodicWrapper */
            aload 10 /* f */
            invokevirtual io.reactivex.internal.schedulers.InstantPeriodicTask.setFirst:(Ljava/util/concurrent/Future;)V
         9: .line 144
            goto 13
        end local 10 // java.util.concurrent.Future f
      StackMap locals: io.reactivex.internal.schedulers.SingleScheduler java.lang.Runnable long long java.util.concurrent.TimeUnit java.lang.Runnable java.util.concurrent.ScheduledExecutorService io.reactivex.internal.schedulers.InstantPeriodicTask
      StackMap stack: java.util.concurrent.RejectedExecutionException
        10: astore 11 /* ex */
        start local 11 // java.util.concurrent.RejectedExecutionException ex
        11: .line 145
            aload 11 /* ex */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        12: .line 146
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            areturn
        end local 11 // java.util.concurrent.RejectedExecutionException ex
        start local 10 // java.util.concurrent.Future f
        13: .line 149
      StackMap locals: java.util.concurrent.Future
      StackMap stack:
            aload 9 /* periodicWrapper */
            areturn
        end local 10 // java.util.concurrent.Future f
        end local 9 // io.reactivex.internal.schedulers.InstantPeriodicTask periodicWrapper
        end local 8 // java.util.concurrent.ScheduledExecutorService exec
        14: .line 151
      StackMap locals:
      StackMap stack:
            new io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask
            dup
            aload 7 /* decoratedRun */
            invokespecial io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask.<init>:(Ljava/lang/Runnable;)V
            astore 8 /* task */
        start local 8 // io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask task
        15: .line 153
            aload 0 /* this */
            getfield io.reactivex.internal.schedulers.SingleScheduler.executor:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.util.concurrent.ScheduledExecutorService
            aload 8 /* task */
            lload 2 /* initialDelay */
            lload 4 /* period */
            aload 6 /* unit */
            invokeinterface java.util.concurrent.ScheduledExecutorService.scheduleAtFixedRate:(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;
            astore 9 /* f */
        start local 9 // java.util.concurrent.Future f
        16: .line 154
            aload 8 /* task */
            aload 9 /* f */
            invokevirtual io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask.setFuture:(Ljava/util/concurrent/Future;)V
        17: .line 155
            aload 8 /* task */
        18: areturn
        end local 9 // java.util.concurrent.Future f
        19: .line 156
      StackMap locals: io.reactivex.internal.schedulers.SingleScheduler java.lang.Runnable long long java.util.concurrent.TimeUnit java.lang.Runnable io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask
      StackMap stack: java.util.concurrent.RejectedExecutionException
            astore 9 /* ex */
        start local 9 // java.util.concurrent.RejectedExecutionException ex
        20: .line 157
            aload 9 /* ex */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        21: .line 158
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            areturn
        end local 9 // java.util.concurrent.RejectedExecutionException ex
        end local 8 // io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask task
        end local 7 // java.lang.Runnable decoratedRun
        end local 6 // java.util.concurrent.TimeUnit unit
        end local 4 // long period
        end local 2 // long initialDelay
        end local 1 // java.lang.Runnable run
        end local 0 // io.reactivex.internal.schedulers.SingleScheduler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   22     0             this  Lio/reactivex/internal/schedulers/SingleScheduler;
            0   22     1              run  Ljava/lang/Runnable;
            0   22     2     initialDelay  J
            0   22     4           period  J
            0   22     6             unit  Ljava/util/concurrent/TimeUnit;
            1   22     7     decoratedRun  Ljava/lang/Runnable;
            3   14     8             exec  Ljava/util/concurrent/ScheduledExecutorService;
            4   14     9  periodicWrapper  Lio/reactivex/internal/schedulers/InstantPeriodicTask;
            6    7    10                f  Ljava/util/concurrent/Future<*>;
            8   10    10                f  Ljava/util/concurrent/Future<*>;
           13   14    10                f  Ljava/util/concurrent/Future<*>;
           11   13    11               ex  Ljava/util/concurrent/RejectedExecutionException;
           15   22     8             task  Lio/reactivex/internal/schedulers/ScheduledDirectPeriodicTask;
           16   19     9                f  Ljava/util/concurrent/Future<*>;
           20   22     9               ex  Ljava/util/concurrent/RejectedExecutionException;
      Exception table:
        from    to  target  type
           4     9      10  Class java.util.concurrent.RejectedExecutionException
          15    18      19  Class java.util.concurrent.RejectedExecutionException
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
      1:
      2:
      3:
    MethodParameters:
              Name  Flags
      run           
      initialDelay  
      period        
      unit          
}
SourceFile: "SingleScheduler.java"
NestMembers:
  io.reactivex.internal.schedulers.SingleScheduler$ScheduledWorker
InnerClasses:
  public abstract Worker = io.reactivex.Scheduler$Worker of io.reactivex.Scheduler
  final ScheduledWorker = io.reactivex.internal.schedulers.SingleScheduler$ScheduledWorker of io.reactivex.internal.schedulers.SingleScheduler