class io.vertx.core.impl.future.OtherwiseTransformation<T> extends io.vertx.core.impl.future.Transformation<T> implements io.vertx.core.impl.future.Listener<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.impl.future.OtherwiseTransformation
  super_class: io.vertx.core.impl.future.Transformation
{
  private final java.util.function.Function<java.lang.Throwable, T> mapper;
    descriptor: Ljava/util/function/Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/function/Function<Ljava/lang/Throwable;TT;>;

  void <init>(io.vertx.core.impl.ContextInternal, java.util.function.Function<java.lang.Throwable, T>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // java.util.function.Function mapper
         0: .line 22
            aload 0 /* this */
            aload 1 /* context */
            invokespecial io.vertx.core.impl.future.Transformation.<init>:(Lio/vertx/core/impl/ContextInternal;)V
         1: .line 23
            aload 0 /* this */
            aload 2 /* mapper */
            putfield io.vertx.core.impl.future.OtherwiseTransformation.mapper:Ljava/util/function/Function;
         2: .line 24
            return
        end local 2 // java.util.function.Function mapper
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/core/impl/future/OtherwiseTransformation<TT;>;
            0    3     1  context  Lio/vertx/core/impl/ContextInternal;
            0    3     2   mapper  Ljava/util/function/Function<Ljava/lang/Throwable;TT;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;Ljava/util/function/Function<Ljava/lang/Throwable;TT;>;)V
    MethodParameters:
         Name  Flags
      context  
      mapper   

  public void onSuccess();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
        start local 1 // java.lang.Object value
         0: .line 28
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual io.vertx.core.impl.future.OtherwiseTransformation.tryComplete:(Ljava/lang/Object;)Z
            pop
         1: .line 29
            return
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/impl/future/OtherwiseTransformation<TT;>;
            0    2     1  value  TT;
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      value  

  public void onFailure(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
        start local 1 // java.lang.Throwable failure
         0: .line 35
            aload 0 /* this */
            getfield io.vertx.core.impl.future.OtherwiseTransformation.mapper:Ljava/util/function/Function;
            aload 1 /* failure */
            invokeinterface java.util.function.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* result */
        start local 2 // java.lang.Object result
         1: .line 36
            goto 5
        end local 2 // java.lang.Object result
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 37
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual io.vertx.core.impl.future.OtherwiseTransformation.tryFail:(Ljava/lang/Throwable;)Z
            pop
         4: .line 38
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.lang.Object result
         5: .line 40
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 2 /* result */
            invokevirtual io.vertx.core.impl.future.OtherwiseTransformation.tryComplete:(Ljava/lang/Object;)Z
            pop
         6: .line 41
            return
        end local 2 // java.lang.Object result
        end local 1 // java.lang.Throwable failure
        end local 0 // io.vertx.core.impl.future.OtherwiseTransformation this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/core/impl/future/OtherwiseTransformation<TT;>;
            0    7     1  failure  Ljava/lang/Throwable;
            1    2     2   result  TT;
            5    7     2   result  TT;
            3    5     3        e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    MethodParameters:
         Name  Flags
      failure  

  public void handle(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.AsyncResult
            invokeinterface io.vertx.core.impl.future.Listener.handle:(Lio/vertx/core/AsyncResult;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lio/vertx/core/impl/future/Transformation<TT;>;Lio/vertx/core/impl/future/Listener<TT;>;
SourceFile: "OtherwiseTransformation.java"