public class io.vertx.reactivex.ContextScheduler$ContextWorker extends io.reactivex.Scheduler$Worker
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.reactivex.ContextScheduler$ContextWorker
  super_class: io.reactivex.Scheduler$Worker
{
  private final java.util.concurrent.ConcurrentHashMap<io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction, java.lang.Object> actions;
    descriptor: Ljava/util/concurrent/ConcurrentHashMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentHashMap<Lio/vertx/reactivex/ContextScheduler$ContextWorker$TimedAction;Ljava/lang/Object;>;

  private final java.util.concurrent.atomic.AtomicBoolean cancelled;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final io.vertx.reactivex.ContextScheduler this$0;
    descriptor: Lio/vertx/reactivex/ContextScheduler;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(io.vertx.reactivex.ContextScheduler);
    descriptor: (Lio/vertx/reactivex/ContextScheduler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
         0: .line 89
            aload 0 /* this */
            aload 1
            putfield io.vertx.reactivex.ContextScheduler$ContextWorker.this$0:Lio/vertx/reactivex/ContextScheduler;
            aload 0 /* this */
            invokespecial io.reactivex.Scheduler$Worker.<init>:()V
         1: .line 91
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield io.vertx.reactivex.ContextScheduler$ContextWorker.actions:Ljava/util/concurrent/ConcurrentHashMap;
         2: .line 92
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.vertx.reactivex.ContextScheduler$ContextWorker.cancelled:Ljava/util/concurrent/atomic/AtomicBoolean;
         3: .line 89
            return
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;
    MethodParameters:
        Name  Flags
      this$0  final

  public int countActions();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.actions:Ljava/util/concurrent/ConcurrentHashMap;
            invokevirtual java.util.concurrent.ConcurrentHashMap.size:()I
            ireturn
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;

  public io.reactivex.disposables.Disposable schedule(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)Lio/reactivex/disposables/Disposable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
        start local 1 // java.lang.Runnable action
         0: .line 100
            aload 0 /* this */
            aload 1 /* action */
            lconst_0
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.vertx.reactivex.ContextScheduler$ContextWorker.schedule:(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
            areturn
        end local 1 // java.lang.Runnable action
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;
            0    1     1  action  Ljava/lang/Runnable;
    MethodParameters:
        Name  Flags
      action  

  public io.reactivex.disposables.Disposable schedule(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=6, locals=8, args_size=4
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
        start local 1 // java.lang.Runnable action
        start local 2 // long delayTime
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 105
            aload 1 /* action */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onSchedule:(Ljava/lang/Runnable;)Ljava/lang/Runnable;
            astore 1 /* action */
         1: .line 106
            aload 4 /* unit */
            lload 2 /* delayTime */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 5 /* delayMillis */
        start local 5 // long delayMillis
         2: .line 107
            new io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction
            dup
            aload 0 /* this */
            aload 1 /* action */
            lconst_0
            invokespecial io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction.<init>:(Lio/vertx/reactivex/ContextScheduler$ContextWorker;Ljava/lang/Runnable;J)V
            astore 7 /* timed */
        start local 7 // io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction timed
         3: .line 108
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.actions:Ljava/util/concurrent/ConcurrentHashMap;
            aload 7 /* timed */
            getstatic io.vertx.reactivex.ContextScheduler.DUMB:Ljava/lang/Object;
            invokevirtual java.util.concurrent.ConcurrentHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 109
            aload 7 /* timed */
            lload 5 /* delayMillis */
            invokevirtual io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction.schedule:(J)V
         5: .line 110
            aload 7 /* timed */
            areturn
        end local 7 // io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction timed
        end local 5 // long delayMillis
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long delayTime
        end local 1 // java.lang.Runnable action
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;
            0    6     1       action  Ljava/lang/Runnable;
            0    6     2    delayTime  J
            0    6     4         unit  Ljava/util/concurrent/TimeUnit;
            2    6     5  delayMillis  J
            3    6     7        timed  Lio/vertx/reactivex/ContextScheduler$ContextWorker$TimedAction;
    MethodParameters:
           Name  Flags
      action     
      delayTime  
      unit       

  public io.reactivex.disposables.Disposable schedulePeriodically(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=10, args_size=5
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
        start local 1 // java.lang.Runnable action
        start local 2 // long initialDelay
        start local 4 // long period
        start local 6 // java.util.concurrent.TimeUnit unit
         0: .line 115
            aload 1 /* action */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onSchedule:(Ljava/lang/Runnable;)Ljava/lang/Runnable;
            astore 1 /* action */
         1: .line 116
            aload 6 /* unit */
            lload 2 /* initialDelay */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 7 /* delayMillis */
        start local 7 // long delayMillis
         2: .line 117
            new io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction
            dup
            aload 0 /* this */
            aload 1 /* action */
            aload 6 /* unit */
            lload 4 /* period */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            invokespecial io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction.<init>:(Lio/vertx/reactivex/ContextScheduler$ContextWorker;Ljava/lang/Runnable;J)V
            astore 9 /* timed */
        start local 9 // io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction timed
         3: .line 118
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.actions:Ljava/util/concurrent/ConcurrentHashMap;
            aload 9 /* timed */
            getstatic io.vertx.reactivex.ContextScheduler.DUMB:Ljava/lang/Object;
            invokevirtual java.util.concurrent.ConcurrentHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 119
            aload 9 /* timed */
            lload 7 /* delayMillis */
            invokevirtual io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction.schedule:(J)V
         5: .line 120
            aload 9 /* timed */
            areturn
        end local 9 // io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction timed
        end local 7 // long delayMillis
        end local 6 // java.util.concurrent.TimeUnit unit
        end local 4 // long period
        end local 2 // long initialDelay
        end local 1 // java.lang.Runnable action
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;
            0    6     1        action  Ljava/lang/Runnable;
            0    6     2  initialDelay  J
            0    6     4        period  J
            0    6     6          unit  Ljava/util/concurrent/TimeUnit;
            2    6     7   delayMillis  J
            3    6     9         timed  Lio/vertx/reactivex/ContextScheduler$ContextWorker$TimedAction;
    MethodParameters:
              Name  Flags
      action        
      initialDelay  
      period        
      unit          

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
         0: .line 125
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.cancelled:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 2
         1: .line 126
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.actions:Ljava/util/concurrent/ConcurrentHashMap;
            invokevirtual java.util.concurrent.ConcurrentHashMap.keySet:()Ljava/util/concurrent/ConcurrentHashMap$KeySetView;
            invokedynamic accept()Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/reactivex/ContextScheduler$ContextWorker$TimedAction.dispose()V (5)
                  (Lio/vertx/reactivex/ContextScheduler$ContextWorker$TimedAction;)V
            invokevirtual java.util.concurrent.ConcurrentHashMap$KeySetView.forEach:(Ljava/util/function/Consumer;)V
         2: .line 128
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
         0: .line 132
            aload 0 /* this */
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.cancelled:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ireturn
        end local 0 // io.vertx.reactivex.ContextScheduler$ContextWorker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/reactivex/ContextScheduler$ContextWorker;

  static io.vertx.reactivex.ContextScheduler access$0(io.vertx.reactivex.ContextScheduler$ContextWorker);
    descriptor: (Lio/vertx/reactivex/ContextScheduler$ContextWorker;)Lio/vertx/reactivex/ContextScheduler;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 89
            aload 0
            getfield io.vertx.reactivex.ContextScheduler$ContextWorker.this$0:Lio/vertx/reactivex/ContextScheduler;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ContextScheduler.java"
NestHost: io.vertx.reactivex.ContextScheduler
InnerClasses:
  public abstract Worker = io.reactivex.Scheduler$Worker of io.reactivex.Scheduler
  public ContextWorker = io.vertx.reactivex.ContextScheduler$ContextWorker of io.vertx.reactivex.ContextScheduler
  TimedAction = io.vertx.reactivex.ContextScheduler$ContextWorker$TimedAction of io.vertx.reactivex.ContextScheduler$ContextWorker
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public KeySetView = java.util.concurrent.ConcurrentHashMap$KeySetView of java.util.concurrent.ConcurrentHashMap