class io.vertx.core.impl.FutureImpl<T> implements io.vertx.core.Promise<T>, io.vertx.core.Future<T>
minor version: 0
major version: 59
flags: flags: (0x0020) ACC_SUPER
this_class: io.vertx.core.impl.FutureImpl
super_class: java.lang.Object
{
private boolean failed;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private boolean succeeded;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.Handler<io.vertx.core.AsyncResult<T>> handler;
descriptor: Lio/vertx/core/Handler;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
private T result;
descriptor: Ljava/lang/Object;
flags: (0x0002) ACC_PRIVATE
Signature: TT;
private java.lang.Throwable throwable;
descriptor: Ljava/lang/Throwable;
flags: (0x0002) ACC_PRIVATE
void <init>();
descriptor: ()V
flags: (0x0000)
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public T result();
descriptor: ()Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.impl.FutureImpl.result:Ljava/lang/Object;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
Signature: ()TT;
public java.lang.Throwable cause();
descriptor: ()Ljava/lang/Throwable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.impl.FutureImpl.throwable:Ljava/lang/Throwable;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public synchronized boolean succeeded();
descriptor: ()Z
flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public synchronized boolean failed();
descriptor: ()Z
flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.impl.FutureImpl.failed:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public synchronized boolean isComplete();
descriptor: ()Z
flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.impl.FutureImpl.failed:Z
ifne 1
aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifne 1
iconst_0
ireturn
StackMap locals:
StackMap stack:
1: iconst_1
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public io.vertx.core.Future<T> setHandler(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>);
descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/Future;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 0
dup
astore 3
monitorenter
1: aload 0
invokevirtual io.vertx.core.impl.FutureImpl.isComplete:()Z
istore 2
start local 2 2: iload 2
ifne 4
3: aload 0
aload 1
putfield io.vertx.core.impl.FutureImpl.handler:Lio/vertx/core/Handler;
4: StackMap locals: int io.vertx.core.impl.FutureImpl
StackMap stack:
aload 3
monitorexit
5: goto 8
end local 2 StackMap locals: io.vertx.core.impl.FutureImpl io.vertx.core.Handler top io.vertx.core.impl.FutureImpl
StackMap stack: java.lang.Throwable
6: aload 3
monitorexit
7: athrow
start local 2 8: StackMap locals: io.vertx.core.impl.FutureImpl io.vertx.core.Handler int
StackMap stack:
iload 2
ifeq 10
9: aload 1
aload 0
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
10: StackMap locals:
StackMap stack:
aload 0
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 11 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 11 1 handler Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
2 6 2 callHandler Z
8 11 2 callHandler Z
Exception table:
from to target type
1 5 6 any
6 7 6 any
Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;)Lio/vertx/core/Future<TT;>;
MethodParameters:
Name Flags
handler
public void complete();
descriptor: (Ljava/lang/Object;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.core.impl.FutureImpl.tryComplete:(Ljava/lang/Object;)Z
ifne 4
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Result is already complete: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifeq 2
ldc "succeeded"
goto 3
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Object
StackMap stack: new 1 new 1 java.lang.StringBuilder
2: ldc "failed"
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Object
StackMap stack: new 1 new 1 java.lang.StringBuilder java.lang.String
3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 5 1 result TT;
Signature: (TT;)V
MethodParameters:
Name Flags
result
public void complete();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual io.vertx.core.impl.FutureImpl.tryComplete:()Z
ifne 4
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Result is already complete: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifeq 2
ldc "succeeded"
goto 3
StackMap locals: io.vertx.core.impl.FutureImpl
StackMap stack: new 1 new 1 java.lang.StringBuilder
2: ldc "failed"
StackMap locals: io.vertx.core.impl.FutureImpl
StackMap stack: new 1 new 1 java.lang.StringBuilder java.lang.String
3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public void fail(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.core.impl.FutureImpl.tryFail:(Ljava/lang/Throwable;)Z
ifne 4
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Result is already complete: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifeq 2
ldc "succeeded"
goto 3
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Throwable
StackMap stack: new 1 new 1 java.lang.StringBuilder
2: ldc "failed"
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Throwable
StackMap stack: new 1 new 1 java.lang.StringBuilder java.lang.String
3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 5 1 cause Ljava/lang/Throwable;
MethodParameters:
Name Flags
cause
public void fail(java.lang.String);
descriptor: (Ljava/lang/String;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.core.impl.FutureImpl.tryFail:(Ljava/lang/String;)Z
ifne 4
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
ldc "Result is already complete: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifeq 2
ldc "succeeded"
goto 3
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.String
StackMap stack: new 1 new 1 java.lang.StringBuilder
2: ldc "failed"
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.String
StackMap stack: new 1 new 1 java.lang.StringBuilder java.lang.String
3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 5 1 failureMessage Ljava/lang/String;
MethodParameters:
Name Flags
failureMessage
public boolean tryComplete();
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=2
start local 0 start local 1 0: aload 0
dup
astore 3
monitorenter
1: aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifne 2
aload 0
getfield io.vertx.core.impl.FutureImpl.failed:Z
ifeq 4
2: StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Object top io.vertx.core.impl.FutureImpl
StackMap stack:
aload 3
monitorexit
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 0
aload 1
putfield io.vertx.core.impl.FutureImpl.result:Ljava/lang/Object;
5: aload 0
iconst_1
putfield io.vertx.core.impl.FutureImpl.succeeded:Z
6: aload 0
getfield io.vertx.core.impl.FutureImpl.handler:Lio/vertx/core/Handler;
astore 2
start local 2 7: aload 0
aconst_null
putfield io.vertx.core.impl.FutureImpl.handler:Lio/vertx/core/Handler;
8: aload 3
monitorexit
9: goto 12
end local 2 StackMap locals:
StackMap stack: java.lang.Throwable
10: aload 3
monitorexit
11: athrow
start local 2 12: StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Object io.vertx.core.Handler
StackMap stack:
aload 2
ifnull 14
13: aload 2
aload 0
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
14: StackMap locals:
StackMap stack:
iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 15 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 15 1 result TT;
7 10 2 h Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
12 15 2 h Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
Exception table:
from to target type
1 3 10 any
4 9 10 any
10 11 10 any
Signature: (TT;)Z
MethodParameters:
Name Flags
result
public boolean tryComplete();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
aconst_null
invokevirtual io.vertx.core.impl.FutureImpl.tryComplete:(Ljava/lang/Object;)Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
public void handle(io.vertx.core.Future<T>);
descriptor: (Lio/vertx/core/Future;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface io.vertx.core.Future.succeeded:()Z
ifeq 3
1: aload 0
aload 1
invokeinterface io.vertx.core.Future.result:()Ljava/lang/Object;
invokevirtual io.vertx.core.impl.FutureImpl.complete:(Ljava/lang/Object;)V
2: goto 4
3: StackMap locals:
StackMap stack:
aload 0
aload 1
invokeinterface io.vertx.core.Future.cause:()Ljava/lang/Throwable;
invokevirtual io.vertx.core.impl.FutureImpl.fail:(Ljava/lang/Throwable;)V
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 5 1 ar Lio/vertx/core/Future<TT;>;
Signature: (Lio/vertx/core/Future<TT;>;)V
MethodParameters:
Name Flags
ar
public io.vertx.core.Handler<io.vertx.core.AsyncResult<T>> completer();
descriptor: ()Lio/vertx/core/Handler;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
Signature: ()Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
public void handle(io.vertx.core.AsyncResult<T>);
descriptor: (Lio/vertx/core/AsyncResult;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
ifeq 3
1: aload 0
aload 1
invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
invokevirtual io.vertx.core.impl.FutureImpl.complete:(Ljava/lang/Object;)V
2: goto 4
3: StackMap locals:
StackMap stack:
aload 0
aload 1
invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
invokevirtual io.vertx.core.impl.FutureImpl.fail:(Ljava/lang/Throwable;)V
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 5 1 asyncResult Lio/vertx/core/AsyncResult<TT;>;
Signature: (Lio/vertx/core/AsyncResult<TT;>;)V
MethodParameters:
Name Flags
asyncResult
public boolean tryFail(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 0
dup
astore 3
monitorenter
1: aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifne 2
aload 0
getfield io.vertx.core.impl.FutureImpl.failed:Z
ifeq 4
2: StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Throwable top io.vertx.core.impl.FutureImpl
StackMap stack:
aload 3
monitorexit
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 0
aload 1
ifnull 5
aload 1
goto 6
StackMap locals:
StackMap stack: io.vertx.core.impl.FutureImpl
5: new io.vertx.core.impl.NoStackTraceThrowable
dup
aconst_null
invokespecial io.vertx.core.impl.NoStackTraceThrowable.<init>:(Ljava/lang/String;)V
StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Throwable top io.vertx.core.impl.FutureImpl
StackMap stack: io.vertx.core.impl.FutureImpl java.lang.Throwable
6: putfield io.vertx.core.impl.FutureImpl.throwable:Ljava/lang/Throwable;
7: aload 0
iconst_1
putfield io.vertx.core.impl.FutureImpl.failed:Z
8: aload 0
getfield io.vertx.core.impl.FutureImpl.handler:Lio/vertx/core/Handler;
astore 2
start local 2 9: aload 0
aconst_null
putfield io.vertx.core.impl.FutureImpl.handler:Lio/vertx/core/Handler;
10: aload 3
monitorexit
11: goto 14
end local 2 StackMap locals:
StackMap stack: java.lang.Throwable
12: aload 3
monitorexit
13: athrow
start local 2 14: StackMap locals: io.vertx.core.impl.FutureImpl java.lang.Throwable io.vertx.core.Handler
StackMap stack:
aload 2
ifnull 16
15: aload 2
aload 0
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
16: StackMap locals:
StackMap stack:
iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 17 1 cause Ljava/lang/Throwable;
9 12 2 h Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
14 17 2 h Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
Exception table:
from to target type
1 3 12 any
4 11 12 any
12 13 12 any
MethodParameters:
Name Flags
cause
public boolean tryFail(java.lang.String);
descriptor: (Ljava/lang/String;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
new io.vertx.core.impl.NoStackTraceThrowable
dup
aload 1
invokespecial io.vertx.core.impl.NoStackTraceThrowable.<init>:(Ljava/lang/String;)V
invokevirtual io.vertx.core.impl.FutureImpl.tryFail:(Ljava/lang/Throwable;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
0 1 1 failureMessage Ljava/lang/String;
MethodParameters:
Name Flags
failureMessage
public io.vertx.core.Future<T> future();
descriptor: ()Lio/vertx/core/Future;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
Signature: ()Lio/vertx/core/Future<TT;>;
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=1
start local 0 0: aload 0
dup
astore 1
monitorenter
1: aload 0
getfield io.vertx.core.impl.FutureImpl.succeeded:Z
ifeq 4
2: new java.lang.StringBuilder
dup
ldc "Future{result="
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.result:Ljava/lang/Object;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
ldc "}"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
aload 1
monitorexit
3: areturn
4: StackMap locals: io.vertx.core.impl.FutureImpl
StackMap stack:
aload 0
getfield io.vertx.core.impl.FutureImpl.failed:Z
ifeq 7
5: new java.lang.StringBuilder
dup
ldc "Future{cause="
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
getfield io.vertx.core.impl.FutureImpl.throwable:Ljava/lang/Throwable;
invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
ldc "}"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
aload 1
monitorexit
6: areturn
7: StackMap locals:
StackMap stack:
aload 1
monitorexit
8: ldc "Future{unresolved}"
areturn
9: StackMap locals:
StackMap stack: java.lang.Throwable
aload 1
monitorexit
10: athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 11 0 this Lio/vertx/core/impl/FutureImpl<TT;>;
Exception table:
from to target type
1 3 9 any
4 6 9 any
7 8 9 any
9 10 9 any
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: aload 0
aload 1
checkcast java.lang.Object
invokeinterface io.vertx.core.Future.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: aload 0
aload 1
checkcast java.util.function.Function
invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
areturn
LocalVariableTable:
Start End Slot Name Signature
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: aload 0
aload 1
checkcast io.vertx.core.AsyncResult
invokevirtual io.vertx.core.impl.FutureImpl.handle:(Lio/vertx/core/AsyncResult;)V
return
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: 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: aload 0
aload 1
checkcast java.lang.Object
invokeinterface io.vertx.core.Future.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: aload 0
aload 1
checkcast java.util.function.Function
invokeinterface io.vertx.core.Future.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: aload 0
invokeinterface io.vertx.core.Future.mapEmpty:()Lio/vertx/core/Future;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/core/Promise<TT;>;Lio/vertx/core/Future<TT;>;
SourceFile: "FutureImpl.java"