abstract class io.vertx.core.impl.AbstractContext implements io.vertx.core.impl.ContextInternal
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.impl.AbstractContext
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;

  public abstract boolean isEventLoopContext();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public final boolean isRunningOnContext();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 37
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            aload 0 /* this */
            if_acmpne 1
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.inThread:()Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/AbstractContext;

  abstract boolean inThread();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  public boolean isWorkerContext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 44
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.isEventLoopContext:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/AbstractContext;

  public void emit(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler task
         0: .line 49
            aload 0 /* this */
            aconst_null
            aload 1 /* task */
            invokevirtual io.vertx.core.impl.AbstractContext.emit:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 50
            return
        end local 1 // io.vertx.core.Handler task
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/AbstractContext;
            0    2     1  task  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
      Name  Flags
      task  

  public final void execute(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler task
         0: .line 54
            aload 0 /* this */
            aconst_null
            aload 1 /* task */
            invokevirtual io.vertx.core.impl.AbstractContext.execute:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 55
            return
        end local 1 // io.vertx.core.Handler task
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/AbstractContext;
            0    2     1  task  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
      Name  Flags
      task  

  public final void dispatch(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler handler
         0: .line 59
            aload 0 /* this */
            aconst_null
            aload 1 /* handler */
            invokevirtual io.vertx.core.impl.AbstractContext.dispatch:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         1: .line 60
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/impl/AbstractContext;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public final io.vertx.core.impl.ContextInternal beginDispatch();
    descriptor: ()Lio/vertx/core/impl/ContextInternal;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 64
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            checkcast io.vertx.core.impl.VertxThread
            astore 2 /* th */
        start local 2 // io.vertx.core.impl.VertxThread th
         1: .line 65
            aload 2 /* th */
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.VertxThread.beginEmission:(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/impl/ContextInternal;
            astore 1 /* prev */
        start local 1 // io.vertx.core.impl.ContextInternal prev
         2: .line 66
            getstatic io.vertx.core.impl.VertxThread.DISABLE_TCCL:Z
            ifne 4
         3: .line 67
            aload 2 /* th */
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.classLoader:()Ljava/lang/ClassLoader;
            invokevirtual io.vertx.core.impl.VertxThread.setContextClassLoader:(Ljava/lang/ClassLoader;)V
         4: .line 69
      StackMap locals: io.vertx.core.impl.ContextInternal io.vertx.core.impl.VertxThread
      StackMap stack:
            aload 1 /* prev */
            areturn
        end local 2 // io.vertx.core.impl.VertxThread th
        end local 1 // io.vertx.core.impl.ContextInternal prev
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/impl/AbstractContext;
            2    5     1  prev  Lio/vertx/core/impl/ContextInternal;
            1    5     2    th  Lio/vertx/core/impl/VertxThread;

  public final void endDispatch(io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/impl/ContextInternal;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.impl.ContextInternal previous
         0: .line 73
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            checkcast io.vertx.core.impl.VertxThread
            astore 2 /* th */
        start local 2 // io.vertx.core.impl.VertxThread th
         1: .line 74
            getstatic io.vertx.core.impl.VertxThread.DISABLE_TCCL:Z
            ifne 5
         2: .line 75
            aload 2 /* th */
            aload 1 /* previous */
            ifnull 3
            aload 1 /* previous */
            invokeinterface io.vertx.core.impl.ContextInternal.classLoader:()Ljava/lang/ClassLoader;
            goto 4
      StackMap locals: io.vertx.core.impl.AbstractContext io.vertx.core.impl.ContextInternal io.vertx.core.impl.VertxThread
      StackMap stack: io.vertx.core.impl.VertxThread
         3: aconst_null
      StackMap locals: io.vertx.core.impl.AbstractContext io.vertx.core.impl.ContextInternal io.vertx.core.impl.VertxThread
      StackMap stack: io.vertx.core.impl.VertxThread java.lang.ClassLoader
         4: invokevirtual io.vertx.core.impl.VertxThread.setContextClassLoader:(Ljava/lang/ClassLoader;)V
         5: .line 77
      StackMap locals:
      StackMap stack:
            aload 2 /* th */
            aload 1 /* previous */
            invokevirtual io.vertx.core.impl.VertxThread.endEmission:(Lio/vertx/core/impl/ContextInternal;)V
         6: .line 78
            return
        end local 2 // io.vertx.core.impl.VertxThread th
        end local 1 // io.vertx.core.impl.ContextInternal previous
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/core/impl/AbstractContext;
            0    7     1  previous  Lio/vertx/core/impl/ContextInternal;
            1    7     2        th  Lio/vertx/core/impl/VertxThread;
    MethodParameters:
          Name  Flags
      previous  

  public long setPeriodic(long, io.vertx.core.Handler<java.lang.Long>);
    descriptor: (JLio/vertx/core/Handler;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // long delay
        start local 3 // io.vertx.core.Handler handler
         0: .line 82
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.owner:()Lio/vertx/core/impl/VertxInternal;
            checkcast io.vertx.core.impl.VertxImpl
            astore 4 /* owner */
        start local 4 // io.vertx.core.impl.VertxImpl owner
         1: .line 83
            aload 4 /* owner */
            aload 0 /* this */
            aload 3 /* handler */
            lload 1 /* delay */
            iconst_1
            invokevirtual io.vertx.core.impl.VertxImpl.scheduleTimeout:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;JZ)J
            lreturn
        end local 4 // io.vertx.core.impl.VertxImpl owner
        end local 3 // io.vertx.core.Handler handler
        end local 1 // long delay
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/impl/AbstractContext;
            0    2     1    delay  J
            0    2     3  handler  Lio/vertx/core/Handler<Ljava/lang/Long;>;
            1    2     4    owner  Lio/vertx/core/impl/VertxImpl;
    Signature: (JLio/vertx/core/Handler<Ljava/lang/Long;>;)J
    MethodParameters:
         Name  Flags
      delay    
      handler  

  public long setTimer(long, io.vertx.core.Handler<java.lang.Long>);
    descriptor: (JLio/vertx/core/Handler;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // long delay
        start local 3 // io.vertx.core.Handler handler
         0: .line 88
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.owner:()Lio/vertx/core/impl/VertxInternal;
            checkcast io.vertx.core.impl.VertxImpl
            astore 4 /* owner */
        start local 4 // io.vertx.core.impl.VertxImpl owner
         1: .line 89
            aload 4 /* owner */
            aload 0 /* this */
            aload 3 /* handler */
            lload 1 /* delay */
            iconst_0
            invokevirtual io.vertx.core.impl.VertxImpl.scheduleTimeout:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;JZ)J
            lreturn
        end local 4 // io.vertx.core.impl.VertxImpl owner
        end local 3 // io.vertx.core.Handler handler
        end local 1 // long delay
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/impl/AbstractContext;
            0    2     1    delay  J
            0    2     3  handler  Lio/vertx/core/Handler<Ljava/lang/Long;>;
            1    2     4    owner  Lio/vertx/core/impl/VertxImpl;
    Signature: (JLio/vertx/core/Handler<Ljava/lang/Long;>;)J
    MethodParameters:
         Name  Flags
      delay    
      handler  

  public final <T> void dispatch(T, io.vertx.core.Handler<T>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.Object event
        start local 2 // io.vertx.core.Handler handler
         0: .line 94
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.beginDispatch:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* prev */
        start local 3 // io.vertx.core.impl.ContextInternal prev
         1: .line 96
            aload 2 /* handler */
            aload 1 /* event */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 97
            goto 9
      StackMap locals: io.vertx.core.impl.AbstractContext java.lang.Object io.vertx.core.Handler io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         3: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         4: .line 98
            aload 0 /* this */
            aload 4 /* t */
            invokevirtual io.vertx.core.impl.AbstractContext.reportException:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
         5: .line 100
            aload 0 /* this */
            aload 3 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
            goto 10
         6: .line 99
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
         7: .line 100
            aload 0 /* this */
            aload 3 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
         8: .line 101
            aload 5
            athrow
         9: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
        10: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.impl.ContextInternal prev
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object event
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/impl/AbstractContext;
            0   11     1    event  TT;
            0   11     2  handler  Lio/vertx/core/Handler<TT;>;
            1   11     3     prev  Lio/vertx/core/impl/ContextInternal;
            4    5     4        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
           1     5       6  any
    Signature: <T:Ljava/lang/Object;>(TT;Lio/vertx/core/Handler<TT;>;)V
    MethodParameters:
         Name  Flags
      event    
      handler  

  public final void dispatch(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.Runnable handler
         0: .line 105
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.beginDispatch:()Lio/vertx/core/impl/ContextInternal;
            astore 2 /* prev */
        start local 2 // io.vertx.core.impl.ContextInternal prev
         1: .line 107
            aload 1 /* handler */
            invokeinterface java.lang.Runnable.run:()V
         2: .line 108
            goto 9
      StackMap locals: io.vertx.core.impl.AbstractContext java.lang.Runnable io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         3: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         4: .line 109
            aload 0 /* this */
            aload 3 /* t */
            invokevirtual io.vertx.core.impl.AbstractContext.reportException:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t
         5: .line 111
            aload 0 /* this */
            aload 2 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
            goto 10
         6: .line 110
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
         7: .line 111
            aload 0 /* this */
            aload 2 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
         8: .line 112
            aload 4
            athrow
         9: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* prev */
            invokevirtual io.vertx.core.impl.AbstractContext.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
        10: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.impl.ContextInternal prev
        end local 1 // java.lang.Runnable handler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/impl/AbstractContext;
            0   11     1  handler  Ljava/lang/Runnable;
            1   11     2     prev  Lio/vertx/core/impl/ContextInternal;
            4    5     3        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
           1     5       6  any
    MethodParameters:
         Name  Flags
      handler  

  public final java.util.List<java.lang.String> processArgs();
    descriptor: ()Ljava/util/List;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 117
            invokestatic io.vertx.core.impl.launcher.VertxCommandLauncher.getProcessArguments:()Ljava/util/List;
            areturn
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public final <T> void executeBlockingInternal(io.vertx.core.Handler<io.vertx.core.Promise<T>>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler action
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 122
            aload 0 /* this */
            aload 1 /* action */
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlockingInternal:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            astore 3 /* fut */
        start local 3 // io.vertx.core.Future fut
         1: .line 123
            aload 0 /* this */
            aload 3 /* fut */
            aload 2 /* resultHandler */
            invokestatic io.vertx.core.impl.AbstractContext.setResultHandler:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
         2: .line 124
            return
        end local 3 // io.vertx.core.Future fut
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.Handler action
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/core/impl/AbstractContext;
            0    3     1         action  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
            0    3     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
            1    3     3            fut  Lio/vertx/core/Future<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
               Name  Flags
      action         
      resultHandler  

  public <T> void executeBlockingInternal(io.vertx.core.Handler<io.vertx.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;ZLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler action
        start local 2 // boolean ordered
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 128
            aload 0 /* this */
            aload 1 /* action */
            iload 2 /* ordered */
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlockingInternal:(Lio/vertx/core/Handler;Z)Lio/vertx/core/Future;
            astore 4 /* fut */
        start local 4 // io.vertx.core.Future fut
         1: .line 129
            aload 0 /* this */
            aload 4 /* fut */
            aload 3 /* resultHandler */
            invokestatic io.vertx.core.impl.AbstractContext.setResultHandler:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
         2: .line 130
            return
        end local 4 // io.vertx.core.Future fut
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // boolean ordered
        end local 1 // io.vertx.core.Handler action
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lio/vertx/core/impl/AbstractContext;
            0    3     1         action  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
            0    3     2        ordered  Z
            0    3     3  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
            1    3     4            fut  Lio/vertx/core/Future<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
               Name  Flags
      action         
      ordered        
      resultHandler  

  public <T> void executeBlocking(io.vertx.core.Handler<io.vertx.core.Promise<T>>, boolean, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;ZLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler blockingCodeHandler
        start local 2 // boolean ordered
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 134
            aload 0 /* this */
            aload 1 /* blockingCodeHandler */
            iload 2 /* ordered */
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlocking:(Lio/vertx/core/Handler;Z)Lio/vertx/core/Future;
            astore 4 /* fut */
        start local 4 // io.vertx.core.Future fut
         1: .line 135
            aload 0 /* this */
            aload 4 /* fut */
            aload 3 /* resultHandler */
            invokestatic io.vertx.core.impl.AbstractContext.setResultHandler:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
         2: .line 136
            return
        end local 4 // io.vertx.core.Future fut
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // boolean ordered
        end local 1 // io.vertx.core.Handler blockingCodeHandler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lio/vertx/core/impl/AbstractContext;
            0    3     1  blockingCodeHandler  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
            0    3     2              ordered  Z
            0    3     3        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
            1    3     4                  fut  Lio/vertx/core/Future<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;ZLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
                     Name  Flags
      blockingCodeHandler  
      ordered              
      resultHandler        

  public <T> void executeBlocking(io.vertx.core.Handler<io.vertx.core.Promise<T>>, io.vertx.core.impl.TaskQueue, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler blockingCodeHandler
        start local 2 // io.vertx.core.impl.TaskQueue queue
        start local 3 // io.vertx.core.Handler resultHandler
         0: .line 140
            aload 0 /* this */
            aload 1 /* blockingCodeHandler */
            aload 2 /* queue */
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/impl/TaskQueue;)Lio/vertx/core/Future;
            astore 4 /* fut */
        start local 4 // io.vertx.core.Future fut
         1: .line 141
            aload 0 /* this */
            aload 4 /* fut */
            aload 3 /* resultHandler */
            invokestatic io.vertx.core.impl.AbstractContext.setResultHandler:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
         2: .line 142
            return
        end local 4 // io.vertx.core.Future fut
        end local 3 // io.vertx.core.Handler resultHandler
        end local 2 // io.vertx.core.impl.TaskQueue queue
        end local 1 // io.vertx.core.Handler blockingCodeHandler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lio/vertx/core/impl/AbstractContext;
            0    3     1  blockingCodeHandler  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
            0    3     2                queue  Lio/vertx/core/impl/TaskQueue;
            0    3     3        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
            1    3     4                  fut  Lio/vertx/core/Future<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;Lio/vertx/core/impl/TaskQueue;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
                     Name  Flags
      blockingCodeHandler  
      queue                
      resultHandler        

  public final <T> void executeBlocking(io.vertx.core.Handler<io.vertx.core.Promise<T>>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler blockingCodeHandler
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 146
            aload 0 /* this */
            aload 1 /* blockingCodeHandler */
            iconst_1
            aload 2 /* resultHandler */
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlocking:(Lio/vertx/core/Handler;ZLio/vertx/core/Handler;)V
         1: .line 147
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.Handler blockingCodeHandler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lio/vertx/core/impl/AbstractContext;
            0    2     1  blockingCodeHandler  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
            0    2     2        resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
                     Name  Flags
      blockingCodeHandler  
      resultHandler        

  public <T> io.vertx.core.Future<T> executeBlocking(io.vertx.core.Handler<io.vertx.core.Promise<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler blockingCodeHandler
         0: .line 150
            aload 0 /* this */
            aload 1 /* blockingCodeHandler */
            iconst_1
            invokevirtual io.vertx.core.impl.AbstractContext.executeBlocking:(Lio/vertx/core/Handler;Z)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.Handler blockingCodeHandler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lio/vertx/core/impl/AbstractContext;
            0    1     1  blockingCodeHandler  Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/Promise<TT;>;>;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
                     Name  Flags
      blockingCodeHandler  

  public <T> io.vertx.core.impl.future.PromiseInternal<T> promise();
    descriptor: ()Lio/vertx/core/impl/future/PromiseInternal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 155
            new io.vertx.core.impl.future.PromiseImpl
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.impl.future.PromiseImpl.<init>:(Lio/vertx/core/impl/ContextInternal;)V
            areturn
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;
    Signature: <T:Ljava/lang/Object;>()Lio/vertx/core/impl/future/PromiseInternal<TT;>;

  public <T> io.vertx.core.impl.future.PromiseInternal<T> promise(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/impl/future/PromiseInternal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // io.vertx.core.Handler handler
         0: .line 160
            aload 1 /* handler */
            instanceof io.vertx.core.impl.future.PromiseInternal
            ifeq 2
         1: .line 161
            aload 1 /* handler */
            checkcast io.vertx.core.impl.future.PromiseInternal
            areturn
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.impl.future.PromiseInternal promise
         3: .line 164
            aload 2 /* promise */
            invokeinterface io.vertx.core.impl.future.PromiseInternal.future:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 165
            aload 2 /* promise */
            areturn
        end local 2 // io.vertx.core.impl.future.PromiseInternal promise
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/impl/AbstractContext;
            0    5     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
            3    5     2  promise  Lio/vertx/core/impl/future/PromiseInternal<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)Lio/vertx/core/impl/future/PromiseInternal<TT;>;
    MethodParameters:
         Name  Flags
      handler  

  public <T> io.vertx.core.Future<T> succeededFuture();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.AbstractContext this
         0: .line 171
            new io.vertx.core.impl.future.SucceededFuture
            dup
            aload 0 /* this */
            aconst_null
            invokespecial io.vertx.core.impl.future.SucceededFuture.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;)V
            areturn
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;
    Signature: <T:Ljava/lang/Object;>()Lio/vertx/core/Future<TT;>;

  public <T> io.vertx.core.Future<T> succeededFuture(T);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.Object result
         0: .line 176
            new io.vertx.core.impl.future.SucceededFuture
            dup
            aload 0 /* this */
            aload 1 /* result */
            invokespecial io.vertx.core.impl.future.SucceededFuture.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object result
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/core/impl/AbstractContext;
            0    1     1  result  TT;
    Signature: <T:Ljava/lang/Object;>(TT;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
        Name  Flags
      result  

  public <T> io.vertx.core.Future<T> failedFuture(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.Throwable failure
         0: .line 181
            new io.vertx.core.impl.future.FailedFuture
            dup
            aload 0 /* this */
            aload 1 /* failure */
            invokespecial io.vertx.core.impl.future.FailedFuture.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Throwable;)V
            areturn
        end local 1 // java.lang.Throwable failure
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/impl/AbstractContext;
            0    1     1  failure  Ljava/lang/Throwable;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Throwable;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
         Name  Flags
      failure  

  public <T> io.vertx.core.Future<T> failedFuture(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String message
         0: .line 186
            new io.vertx.core.impl.future.FailedFuture
            dup
            aload 0 /* this */
            aload 1 /* message */
            invokespecial io.vertx.core.impl.future.FailedFuture.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String message
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/core/impl/AbstractContext;
            0    1     1  message  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
         Name  Flags
      message  

  public final <T> T get(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
         0: .line 192
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.contextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;
            0    1     1   key  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public final void put(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 197
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.contextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.concurrent.ConcurrentMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 198
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/impl/AbstractContext;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public final boolean remove(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
         0: .line 202
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.contextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/AbstractContext;
            0    2     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public final <T> T getLocal(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
         0: .line 208
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.localContextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/AbstractContext;
            0    1     1   key  Ljava/lang/String;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;)TT;
    MethodParameters:
      Name  Flags
      key   

  public final void putLocal(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Object value
         0: .line 213
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.localContextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.concurrent.ConcurrentMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 214
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/impl/AbstractContext;
            0    2     1    key  Ljava/lang/String;
            0    2     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public final boolean removeLocal(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.AbstractContext this
        start local 1 // java.lang.String key
         0: .line 218
            aload 0 /* this */
            invokevirtual io.vertx.core.impl.AbstractContext.localContextData:()Ljava/util/concurrent/ConcurrentMap;
            aload 1 /* key */
            invokeinterface java.util.concurrent.ConcurrentMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.String key
        end local 0 // io.vertx.core.impl.AbstractContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/AbstractContext;
            0    2     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  public abstract io.vertx.core.impl.CloseHooks closeHooks();
    descriptor: ()Lio/vertx/core/impl/CloseHooks;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  private static <T> void setResultHandler(io.vertx.core.impl.ContextInternal, io.vertx.core.Future<T>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future;Lio/vertx/core/Handler;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.ContextInternal ctx
        start local 1 // io.vertx.core.Future fut
        start local 2 // io.vertx.core.Handler resultHandler
         0: .line 224
            aload 2 /* resultHandler */
            ifnull 3
         1: .line 225
            aload 1 /* fut */
            aload 2 /* resultHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         2: .line 226
            goto 4
         3: .line 227
      StackMap locals:
      StackMap stack:
            aload 1 /* fut */
            aload 0 /* ctx */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Handler;
              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/core/impl/ContextInternal.reportException(Ljava/lang/Throwable;)V (9 itf)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.Future.onFailure:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 229
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler resultHandler
        end local 1 // io.vertx.core.Future fut
        end local 0 // io.vertx.core.impl.ContextInternal ctx
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0            ctx  Lio/vertx/core/impl/ContextInternal;
            0    5     1            fut  Lio/vertx/core/Future<TT;>;
            0    5     2  resultHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
    Signature: <T:Ljava/lang/Object;>(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Future<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)V
    MethodParameters:
               Name  Flags
      ctx            
      fut            
      resultHandler  
}
SourceFile: "AbstractContext.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles