public class io.vertx.rx.java.HandlerAdapter<T> extends io.vertx.rx.java.ObservableOnSubscribeAdapter<T> implements io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.rx.java.HandlerAdapter
  super_class: io.vertx.rx.java.ObservableOnSubscribeAdapter
{
  private io.vertx.core.AsyncResult<T> buffered;
    descriptor: Lio/vertx/core/AsyncResult;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/AsyncResult<TT;>;

  private boolean subscribed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rx.java.HandlerAdapter this
         0: .line 9
            aload 0 /* this */
            invokespecial io.vertx.rx.java.ObservableOnSubscribeAdapter.<init>:()V
            return
        end local 0 // io.vertx.rx.java.HandlerAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rx/java/HandlerAdapter<TT;>;

  public void onSubscribed();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.rx.java.HandlerAdapter this
         0: .line 16
            aload 0 /* this */
            getfield io.vertx.rx.java.HandlerAdapter.buffered:Lio/vertx/core/AsyncResult;
            astore 1 /* result */
        start local 1 // io.vertx.core.AsyncResult result
         1: .line 17
            aload 1 /* result */
            ifnull 5
         2: .line 18
            aload 0 /* this */
            aconst_null
            putfield io.vertx.rx.java.HandlerAdapter.buffered:Lio/vertx/core/AsyncResult;
         3: .line 19
            aload 0 /* this */
            aload 1 /* result */
            invokevirtual io.vertx.rx.java.HandlerAdapter.dispatch:(Lio/vertx/core/AsyncResult;)V
         4: .line 20
            goto 6
         5: .line 21
      StackMap locals: io.vertx.core.AsyncResult
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.rx.java.HandlerAdapter.subscribed:Z
         6: .line 23
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult result
        end local 0 // io.vertx.rx.java.HandlerAdapter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/vertx/rx/java/HandlerAdapter<TT;>;
            1    7     1  result  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 // io.vertx.rx.java.HandlerAdapter this
        start local 1 // io.vertx.core.AsyncResult event
         0: .line 27
            aload 0 /* this */
            getfield io.vertx.rx.java.HandlerAdapter.subscribed:Z
            ifeq 4
         1: .line 28
            aload 0 /* this */
            iconst_0
            putfield io.vertx.rx.java.HandlerAdapter.subscribed:Z
         2: .line 29
            aload 0 /* this */
            aload 1 /* event */
            invokevirtual io.vertx.rx.java.HandlerAdapter.dispatch:(Lio/vertx/core/AsyncResult;)V
         3: .line 30
            goto 5
         4: .line 31
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* event */
            putfield io.vertx.rx.java.HandlerAdapter.buffered:Lio/vertx/core/AsyncResult;
         5: .line 33
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult event
        end local 0 // io.vertx.rx.java.HandlerAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/rx/java/HandlerAdapter<TT;>;
            0    6     1  event  Lio/vertx/core/AsyncResult<TT;>;
    Signature: (Lio/vertx/core/AsyncResult<TT;>;)V
    MethodParameters:
       Name  Flags
      event  

  protected void onUnsubscribed();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.rx.java.HandlerAdapter this
         0: .line 37
            aload 0 /* this */
            iconst_0
            putfield io.vertx.rx.java.HandlerAdapter.subscribed:Z
         1: .line 38
            return
        end local 0 // io.vertx.rx.java.HandlerAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/rx/java/HandlerAdapter<TT;>;

  protected void dispatch(io.vertx.core.AsyncResult<T>);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rx.java.HandlerAdapter this
        start local 1 // io.vertx.core.AsyncResult event
         0: .line 41
            aload 1 /* event */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 4
         1: .line 42
            aload 0 /* this */
            aload 1 /* event */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            invokevirtual io.vertx.rx.java.HandlerAdapter.fireNext:(Ljava/lang/Object;)V
         2: .line 43
            aload 0 /* this */
            invokevirtual io.vertx.rx.java.HandlerAdapter.fireComplete:()V
         3: .line 44
            goto 5
         4: .line 45
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* event */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.rx.java.HandlerAdapter.fireError:(Ljava/lang/Throwable;)V
         5: .line 47
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult event
        end local 0 // io.vertx.rx.java.HandlerAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/rx/java/HandlerAdapter<TT;>;
            0    6     1  event  Lio/vertx/core/AsyncResult<TT;>;
    Signature: (Lio/vertx/core/AsyncResult<TT;>;)V
    MethodParameters:
       Name  Flags
      event  

  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
            invokevirtual io.vertx.rx.java.HandlerAdapter.handle:(Lio/vertx/core/AsyncResult;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lio/vertx/rx/java/ObservableOnSubscribeAdapter<TT;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;
SourceFile: "HandlerAdapter.java"