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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // io.vertx.core.impl.ContextInternal context
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* context */
            putfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
         2: .line 34
            return
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // io.vertx.core.Handler handler
         0: .line 37
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpEventHandler.chunkHandler:Lio/vertx/core/Handler;
         1: .line 38
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // io.vertx.core.Handler handler
         0: .line 41
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpEventHandler.endHandler:Lio/vertx/core/Handler;
         1: .line 42
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // io.vertx.core.Handler handler
         0: .line 45
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.http.impl.HttpEventHandler.exceptionHandler:Lio/vertx/core/Handler;
         1: .line 46
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // io.vertx.core.buffer.Buffer chunk
         0: .line 49
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.chunkHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         1: .line 50
            aload 2 /* handler */
            ifnull 3
         2: .line 51
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* chunk */
            aload 2 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         3: .line 53
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
            ifnull 5
         4: .line 54
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
            aload 1 /* chunk */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         5: .line 56
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.buffer.Buffer chunk
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
         0: .line 59
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.body:Lio/vertx/core/buffer/Buffer;
            ifnonnull 3
         1: .line 60
            aload 0 /* this */
            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: .line 61
            aload 0 /* this */
            aload 0 /* this */
            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: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            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 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
         0: .line 67
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
            ifnonnull 2
         1: .line 68
            aload 0 /* this */
            aload 0 /* this */
            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: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            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 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
         0: .line 74
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endHandler:Lio/vertx/core/Handler;
            astore 1 /* handler */
        start local 1 // io.vertx.core.Handler handler
         1: .line 75
            aload 1 /* handler */
            ifnull 3
         2: .line 76
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Lio/vertx/core/Handler;)V
         3: .line 78
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
            ifnull 5
         4: .line 79
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
            aload 0 /* this */
            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: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
            ifnull 7
         6: .line 82
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
            invokeinterface io.vertx.core.Promise.tryComplete:()Z
            pop
         7: .line 84
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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 // io.vertx.core.http.impl.HttpEventHandler this
        start local 1 // java.lang.Throwable err
         0: .line 87
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.exceptionHandler:Lio/vertx/core/Handler;
            astore 2 /* handler */
        start local 2 // io.vertx.core.Handler handler
         1: .line 88
            aload 2 /* handler */
            ifnull 3
         2: .line 89
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.context:Lio/vertx/core/impl/ContextInternal;
            aload 1 /* err */
            aload 2 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.dispatch:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         3: .line 91
      StackMap locals: io.vertx.core.Handler
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
            ifnull 5
         4: .line 92
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.bodyPromise:Lio/vertx/core/Promise;
            aload 1 /* err */
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
         5: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
            ifnull 7
         6: .line 95
            aload 0 /* this */
            getfield io.vertx.core.http.impl.HttpEventHandler.endPromise:Lio/vertx/core/Promise;
            aload 1 /* err */
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/Throwable;)Z
            pop
         7: .line 97
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.Throwable err
        end local 0 // io.vertx.core.http.impl.HttpEventHandler this
      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"