abstract class io.vertx.core.impl.future.FutureBase<T> implements io.vertx.core.impl.future.FutureInternal<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.impl.future.FutureBase
  super_class: java.lang.Object
{
  protected final io.vertx.core.impl.ContextInternal context;
    descriptor: Lio/vertx/core/impl/ContextInternal;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.future.FutureBase this
         0: .line 34
            aload 0 /* this */
            aconst_null
            invokespecial io.vertx.core.impl.future.FutureBase.<init>:(Lio/vertx/core/impl/ContextInternal;)V
         1: .line 35
            return
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/future/FutureBase<TT;>;

  void <init>(io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/impl/ContextInternal;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // io.vertx.core.impl.ContextInternal context
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* context */
            putfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
         2: .line 42
            return
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    3     1  context  Lio/vertx/core/impl/ContextInternal;
    MethodParameters:
         Name  Flags
      context  

  public final io.vertx.core.impl.ContextInternal context();
    descriptor: ()Lio/vertx/core/impl/ContextInternal;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.future.FutureBase this
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            areturn
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/future/FutureBase<TT;>;

  protected final void emitSuccess(T, io.vertx.core.impl.future.Listener<T>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/impl/future/Listener;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.lang.Object value
        start local 2 // io.vertx.core.impl.future.Listener listener
         0: .line 49
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.isRunningOnContext:()Z
            ifne 3
         1: .line 50
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 2 /* listener */
            aload 1 /* value */
            invokedynamic run(Lio/vertx/core/impl/future/FutureBase;Lio/vertx/core/impl/future/Listener;Ljava/lang/Object;)Ljava/lang/Runnable;
              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:
                  ()V
                  io/vertx/core/impl/future/FutureBase.lambda$0(Lio/vertx/core/impl/future/Listener;Ljava/lang/Object;)V (7)
                  ()V
            invokeinterface io.vertx.core.impl.ContextInternal.execute:(Ljava/lang/Runnable;)V
         2: .line 60
            goto 4
         3: .line 61
      StackMap locals:
      StackMap stack:
            aload 2 /* listener */
            aload 1 /* value */
            invokeinterface io.vertx.core.impl.future.Listener.onSuccess:(Ljava/lang/Object;)V
         4: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.impl.future.Listener listener
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    5     1     value  TT;
            0    5     2  listener  Lio/vertx/core/impl/future/Listener<TT;>;
    Signature: (TT;Lio/vertx/core/impl/future/Listener<TT;>;)V
    MethodParameters:
          Name  Flags
      value     
      listener  

  protected final void emitFailure(java.lang.Throwable, io.vertx.core.impl.future.Listener<T>);
    descriptor: (Ljava/lang/Throwable;Lio/vertx/core/impl/future/Listener;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.lang.Throwable cause
        start local 2 // io.vertx.core.impl.future.Listener listener
         0: .line 66
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.isRunningOnContext:()Z
            ifne 3
         1: .line 67
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 2 /* listener */
            aload 1 /* cause */
            invokedynamic run(Lio/vertx/core/impl/future/FutureBase;Lio/vertx/core/impl/future/Listener;Ljava/lang/Throwable;)Ljava/lang/Runnable;
              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:
                  ()V
                  io/vertx/core/impl/future/FutureBase.lambda$1(Lio/vertx/core/impl/future/Listener;Ljava/lang/Throwable;)V (7)
                  ()V
            invokeinterface io.vertx.core.impl.ContextInternal.execute:(Ljava/lang/Runnable;)V
         2: .line 77
            goto 4
         3: .line 78
      StackMap locals:
      StackMap stack:
            aload 2 /* listener */
            aload 1 /* cause */
            invokeinterface io.vertx.core.impl.future.Listener.onFailure:(Ljava/lang/Throwable;)V
         4: .line 80
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.impl.future.Listener listener
        end local 1 // java.lang.Throwable cause
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    5     1     cause  Ljava/lang/Throwable;
            0    5     2  listener  Lio/vertx/core/impl/future/Listener<TT;>;
    Signature: (Ljava/lang/Throwable;Lio/vertx/core/impl/future/Listener<TT;>;)V
    MethodParameters:
          Name  Flags
      cause     
      listener  

  protected final <U> void emit(U, io.vertx.core.Handler<U>);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.lang.Object value
        start local 2 // io.vertx.core.Handler handler
         0: .line 83
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            ifnull 3
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.isRunningOnContext:()Z
            ifne 3
         1: .line 84
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 2 /* handler */
            aload 1 /* value */
            invokedynamic run(Lio/vertx/core/impl/future/FutureBase;Lio/vertx/core/Handler;Ljava/lang/Object;)Ljava/lang/Runnable;
              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:
                  ()V
                  io/vertx/core/impl/future/FutureBase.lambda$2(Lio/vertx/core/Handler;Ljava/lang/Object;)V (7)
                  ()V
            invokeinterface io.vertx.core.impl.ContextInternal.execute:(Ljava/lang/Runnable;)V
         2: .line 94
            goto 4
         3: .line 95
      StackMap locals:
      StackMap stack:
            aload 2 /* handler */
            aload 1 /* value */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 97
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    5     1    value  TU;
            0    5     2  handler  Lio/vertx/core/Handler<TU;>;
    Signature: <U:Ljava/lang/Object;>(TU;Lio/vertx/core/Handler<TU;>;)V
    MethodParameters:
         Name  Flags
      value    
      handler  

  public <U> io.vertx.core.Future<U> compose(java.util.function.Function<T, io.vertx.core.Future<U>>, java.util.function.Function<java.lang.Throwable, io.vertx.core.Future<U>>);
    descriptor: (Ljava/util/function/Function;Ljava/util/function/Function;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.util.function.Function successMapper
        start local 2 // java.util.function.Function failureMapper
         0: .line 101
            aload 1 /* successMapper */
            ldc "No null success mapper accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 102
            aload 2 /* failureMapper */
            ldc "No null failure mapper accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 103
            new io.vertx.core.impl.future.ComposeTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* successMapper */
            aload 2 /* failureMapper */
            invokespecial io.vertx.core.impl.future.ComposeTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function;Ljava/util/function/Function;)V
            astore 3 /* transformation */
        start local 3 // io.vertx.core.impl.future.ComposeTransformation transformation
         3: .line 104
            aload 0 /* this */
            aload 3 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         4: .line 105
            aload 3 /* transformation */
            areturn
        end local 3 // io.vertx.core.impl.future.ComposeTransformation transformation
        end local 2 // java.util.function.Function failureMapper
        end local 1 // java.util.function.Function successMapper
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    5     1   successMapper  Ljava/util/function/Function<TT;Lio/vertx/core/Future<TU;>;>;
            0    5     2   failureMapper  Ljava/util/function/Function<Ljava/lang/Throwable;Lio/vertx/core/Future<TU;>;>;
            3    5     3  transformation  Lio/vertx/core/impl/future/ComposeTransformation<TT;TU;>;
    Signature: <U:Ljava/lang/Object;>(Ljava/util/function/Function<TT;Lio/vertx/core/Future<TU;>;>;Ljava/util/function/Function<Ljava/lang/Throwable;Lio/vertx/core/Future<TU;>;>;)Lio/vertx/core/Future<TU;>;
    MethodParameters:
               Name  Flags
      successMapper  
      failureMapper  

  public <U> io.vertx.core.Future<U> eventually(java.util.function.Function<java.lang.Void, io.vertx.core.Future<U>>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.util.function.Function mapper
         0: .line 110
            aload 1 /* mapper */
            ldc "No null success accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 111
            new io.vertx.core.impl.future.EventuallyTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* mapper */
            invokespecial io.vertx.core.impl.future.EventuallyTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function;)V
            astore 2 /* transformation */
        start local 2 // io.vertx.core.impl.future.EventuallyTransformation transformation
         2: .line 112
            aload 0 /* this */
            aload 2 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         3: .line 113
            aload 2 /* transformation */
            areturn
        end local 2 // io.vertx.core.impl.future.EventuallyTransformation transformation
        end local 1 // java.util.function.Function mapper
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    4     1          mapper  Ljava/util/function/Function<Ljava/lang/Void;Lio/vertx/core/Future<TU;>;>;
            2    4     2  transformation  Lio/vertx/core/impl/future/EventuallyTransformation<TT;TU;>;
    Signature: <U:Ljava/lang/Object;>(Ljava/util/function/Function<Ljava/lang/Void;Lio/vertx/core/Future<TU;>;>;)Lio/vertx/core/Future<TU;>;
    MethodParameters:
        Name  Flags
      mapper  

  public <U> io.vertx.core.Future<U> map(java.util.function.Function<T, U>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.util.function.Function mapper
         0: .line 118
            aload 1 /* mapper */
            ldc "No null mapper accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 119
            new io.vertx.core.impl.future.MapTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* mapper */
            invokespecial io.vertx.core.impl.future.MapTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function;)V
            astore 2 /* transformation */
        start local 2 // io.vertx.core.impl.future.MapTransformation transformation
         2: .line 120
            aload 0 /* this */
            aload 2 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         3: .line 121
            aload 2 /* transformation */
            areturn
        end local 2 // io.vertx.core.impl.future.MapTransformation transformation
        end local 1 // java.util.function.Function mapper
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    4     1          mapper  Ljava/util/function/Function<TT;TU;>;
            2    4     2  transformation  Lio/vertx/core/impl/future/MapTransformation<TT;TU;>;
    Signature: <U:Ljava/lang/Object;>(Ljava/util/function/Function<TT;TU;>;)Lio/vertx/core/Future<TU;>;
    MethodParameters:
        Name  Flags
      mapper  

  public <V> io.vertx.core.Future<V> map(V);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.lang.Object value
         0: .line 126
            new io.vertx.core.impl.future.MapValueTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* value */
            invokespecial io.vertx.core.impl.future.MapValueTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;)V
            astore 2 /* transformation */
        start local 2 // io.vertx.core.impl.future.MapValueTransformation transformation
         1: .line 127
            aload 0 /* this */
            aload 2 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         2: .line 128
            aload 2 /* transformation */
            areturn
        end local 2 // io.vertx.core.impl.future.MapValueTransformation transformation
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    3     1           value  TV;
            1    3     2  transformation  Lio/vertx/core/impl/future/MapValueTransformation<TT;TV;>;
    Signature: <V:Ljava/lang/Object;>(TV;)Lio/vertx/core/Future<TV;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.core.Future<T> otherwise(java.util.function.Function<java.lang.Throwable, T>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.util.function.Function mapper
         0: .line 133
            aload 1 /* mapper */
            ldc "No null mapper accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 134
            new io.vertx.core.impl.future.OtherwiseTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* mapper */
            invokespecial io.vertx.core.impl.future.OtherwiseTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function;)V
            astore 2 /* transformation */
        start local 2 // io.vertx.core.impl.future.OtherwiseTransformation transformation
         2: .line 135
            aload 0 /* this */
            aload 2 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         3: .line 136
            aload 2 /* transformation */
            areturn
        end local 2 // io.vertx.core.impl.future.OtherwiseTransformation transformation
        end local 1 // java.util.function.Function mapper
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    4     1          mapper  Ljava/util/function/Function<Ljava/lang/Throwable;TT;>;
            2    4     2  transformation  Lio/vertx/core/impl/future/OtherwiseTransformation<TT;>;
    Signature: (Ljava/util/function/Function<Ljava/lang/Throwable;TT;>;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
        Name  Flags
      mapper  

  public io.vertx.core.Future<T> otherwise(T);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.impl.future.FutureBase this
        start local 1 // java.lang.Object value
         0: .line 141
            new io.vertx.core.impl.future.OtherwiseValueTransformation
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* value */
            invokespecial io.vertx.core.impl.future.OtherwiseValueTransformation.<init>:(Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;)V
            astore 2 /* transformation */
        start local 2 // io.vertx.core.impl.future.OtherwiseValueTransformation transformation
         1: .line 142
            aload 0 /* this */
            aload 2 /* transformation */
            invokevirtual io.vertx.core.impl.future.FutureBase.addListener:(Lio/vertx/core/impl/future/Listener;)V
         2: .line 143
            aload 2 /* transformation */
            areturn
        end local 2 // io.vertx.core.impl.future.OtherwiseValueTransformation transformation
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            0    3     1           value  TT;
            1    3     2  transformation  Lio/vertx/core/impl/future/OtherwiseValueTransformation<TT;>;
    Signature: (TT;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.core.AsyncResult map(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual io.vertx.core.impl.future.FutureBase.map:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.AsyncResult map(java.util.function.Function);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.function.Function
            invokevirtual io.vertx.core.impl.future.FutureBase.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.AsyncResult otherwiseEmpty();
    descriptor: ()Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface io.vertx.core.Future.otherwiseEmpty:()Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.AsyncResult otherwise(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Object
            invokevirtual io.vertx.core.impl.future.FutureBase.otherwise:(Ljava/lang/Object;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.AsyncResult otherwise(java.util.function.Function);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.function.Function
            invokevirtual io.vertx.core.impl.future.FutureBase.otherwise:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.AsyncResult mapEmpty();
    descriptor: ()Lio/vertx/core/AsyncResult;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokeinterface io.vertx.core.Future.mapEmpty:()Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(io.vertx.core.impl.future.Listener, java.lang.Object);
    descriptor: (Lio/vertx/core/impl/future/Listener;Ljava/lang/Object;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.beginDispatch:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* prev */
        start local 3 // io.vertx.core.impl.ContextInternal prev
         1: .line 53
            aload 1
            aload 2
            invokeinterface io.vertx.core.impl.future.Listener.onSuccess:(Ljava/lang/Object;)V
         2: .line 54
            goto 9
      StackMap locals: io.vertx.core.impl.future.FutureBase io.vertx.core.impl.future.Listener java.lang.Object io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         3: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         4: .line 55
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 4 /* t */
            invokeinterface io.vertx.core.impl.ContextInternal.reportException:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
         5: .line 57
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
            goto 10
         6: .line 56
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
         7: .line 57
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
         8: .line 58
            aload 5
            athrow
         9: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
        end local 3 // io.vertx.core.impl.ContextInternal prev
        10: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            1   10     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

  private void lambda$1(io.vertx.core.impl.future.Listener, java.lang.Throwable);
    descriptor: (Lio/vertx/core/impl/future/Listener;Ljava/lang/Throwable;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
         0: .line 68
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.beginDispatch:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* prev */
        start local 3 // io.vertx.core.impl.ContextInternal prev
         1: .line 70
            aload 1
            aload 2
            invokeinterface io.vertx.core.impl.future.Listener.onFailure:(Ljava/lang/Throwable;)V
         2: .line 71
            goto 9
      StackMap locals: io.vertx.core.impl.future.FutureBase io.vertx.core.impl.future.Listener java.lang.Throwable io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         3: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         4: .line 72
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 4 /* t */
            invokeinterface io.vertx.core.impl.ContextInternal.reportException:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
         5: .line 74
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
            goto 10
         6: .line 73
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
         7: .line 74
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
         8: .line 75
            aload 5
            athrow
         9: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
        end local 3 // io.vertx.core.impl.ContextInternal prev
        10: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            1   10     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

  private void lambda$2(io.vertx.core.Handler, java.lang.Object);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Object;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=6, args_size=3
        start local 0 // io.vertx.core.impl.future.FutureBase this
         0: .line 85
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.beginDispatch:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* prev */
        start local 3 // io.vertx.core.impl.ContextInternal prev
         1: .line 87
            aload 1
            aload 2
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 88
            goto 9
      StackMap locals: io.vertx.core.impl.future.FutureBase io.vertx.core.Handler java.lang.Object io.vertx.core.impl.ContextInternal
      StackMap stack: java.lang.Throwable
         3: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         4: .line 89
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 4 /* t */
            invokeinterface io.vertx.core.impl.ContextInternal.reportException:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
         5: .line 91
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
            goto 10
         6: .line 90
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
         7: .line 91
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
         8: .line 92
            aload 5
            athrow
         9: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.future.FutureBase.context:Lio/vertx/core/impl/ContextInternal;
            aload 3 /* prev */
            invokeinterface io.vertx.core.impl.ContextInternal.endDispatch:(Lio/vertx/core/impl/ContextInternal;)V
        end local 3 // io.vertx.core.impl.ContextInternal prev
        10: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.impl.future.FutureBase this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/impl/future/FutureBase<TT;>;
            1   10     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;>Ljava/lang/Object;Lio/vertx/core/impl/future/FutureInternal<TT;>;
SourceFile: "FutureBase.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles