class io.vertx.core.http.impl.HttpEventHandler
minor version: 0
major version: 59
flags: flags: (0x0020) ACC_SUPER
this_class: io.vertx.core.http.impl.HttpEventHandler
super_class: java.lang.Object
{
final io.vertx.core.impl.ContextInternal context;
descriptor: Lio/vertx/core/impl/ContextInternal;
flags: (0x0010) ACC_FINAL
private io.vertx.core.Handler<io.vertx.core.buffer.Buffer> chunkHandler;
descriptor: Lio/vertx/core/Handler;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
private io.vertx.core.Handler<java.lang.Void> endHandler;
descriptor: Lio/vertx/core/Handler;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;
private io.vertx.core.Handler<java.lang.Throwable> exceptionHandler;
descriptor: Lio/vertx/core/Handler;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
private io.vertx.core.buffer.Buffer body;
descriptor: Lio/vertx/core/buffer/Buffer;
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.Promise<io.vertx.core.buffer.Buffer> bodyPromise;
descriptor: Lio/vertx/core/Promise;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Promise<Lio/vertx/core/buffer/Buffer;>;
private io.vertx.core.Promise<java.lang.Void> endPromise;
descriptor: Lio/vertx/core/Promise;
flags: (0x0002) ACC_PRIVATE
Signature: Lio/vertx/core/Promise<Ljava/lang/Void;>;
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 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aload 1
putfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 3 1 context Lio/vertx/core/impl/ContextInternal;
MethodParameters:
Name Flags
context
void chunkHandler(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
descriptor: (Lio/vertx/core/Handler;)V
flags: (0x0000)
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.http.impl.HttpEventHandler.chunkHandler:Lio/vertx/core/Handler;
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 2 1 handler Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)V
MethodParameters:
Name Flags
handler
void endHandler(io.vertx.core.Handler<java.lang.Void>);
descriptor: (Lio/vertx/core/Handler;)V
flags: (0x0000)
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.http.impl.HttpEventHandler.endHandler:Lio/vertx/core/Handler;
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 2 1 handler Lio/vertx/core/Handler<Ljava/lang/Void;>;
Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
MethodParameters:
Name Flags
handler
void exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
descriptor: (Lio/vertx/core/Handler;)V
flags: (0x0000)
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.http.impl.HttpEventHandler.exceptionHandler:Lio/vertx/core/Handler;
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 2 1 handler Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)V
MethodParameters:
Name Flags
handler
void handleChunk(io.vertx.core.buffer.Buffer);
descriptor: (Lio/vertx/core/buffer/Buffer;)V
flags: (0x0000)
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.chunkHandler:Lio/vertx/core/Handler;
astore 2
start local 2 1: aload 2
ifnull 3
2: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
aload 1
aload 2
invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
3: StackMap locals: io.vertx.core.Handler
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
ifnull 5
4: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
aload 1
invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
pop
5: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 6 1 chunk Lio/vertx/core/buffer/Buffer;
1 6 2 handler Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
MethodParameters:
Name Flags
chunk
io.vertx.core.Future<io.vertx.core.buffer.Buffer> body();
descriptor: ()Lio/vertx/core/Future;
flags: (0x0000)
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
ifnonnull 3
1: aload 0
invokestatic io.vertx.core.buffer.Buffer.buffer:()Lio/vertx/core/buffer/Buffer;
putfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
2: aload 0
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
putfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
3: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/http/impl/HttpEventHandler;
Signature: ()Lio/vertx/core/Future<Lio/vertx/core/buffer/Buffer;>;
io.vertx.core.Future<java.lang.Void> end();
descriptor: ()Lio/vertx/core/Future;
flags: (0x0000)
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
ifnonnull 2
1: aload 0
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
putfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
2: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/http/impl/HttpEventHandler;
Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;
void handleEnd();
descriptor: ()V
flags: (0x0000)
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endHandler:Lio/vertx/core/Handler;
astore 1
start local 1 1: aload 1
ifnull 3
2: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
aload 1
invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Lio/vertx/core/Handler;)V
3: StackMap locals: io.vertx.core.Handler
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
ifnull 5
4: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
invokeinterface io.vertx.core.Promise.tryComplete:(Ljava/lang/Object;)Z
pop
5: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
ifnull 7
6: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
invokeinterface io.vertx.core.Promise.tryComplete:()Z
pop
7: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lio/vertx/core/http/impl/HttpEventHandler;
1 8 1 handler Lio/vertx/core/Handler<Ljava/lang/Void;>;
void handleException(java.lang.Throwable);
descriptor: (Ljava/lang/Throwable;)V
flags: (0x0000)
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.exceptionHandler:Lio/vertx/core/Handler;
astore 2
start local 2 1: aload 2
ifnull 3
2: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
aload 1
aload 2
invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
3: StackMap locals: io.vertx.core.Handler
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
ifnull 5
4: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
aload 1
invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
pop
5: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
ifnull 7
6: aload 0
getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
aload 1
invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
pop
7: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lio/vertx/core/http/impl/HttpEventHandler;
0 8 1 err Ljava/lang/Throwable;
1 8 2 handler Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
MethodParameters:
Name Flags
err
}
SourceFile: "HttpEventHandler.java"