public class io.vertx.core.eventbus.impl.HandlerHolder<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.HandlerHolder
  super_class: java.lang.Object
{
  private final io.vertx.core.Context context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.eventbus.impl.HandlerRegistration<T> handler;
    descriptor: Lio/vertx/core/eventbus/impl/HandlerRegistration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;

  private final boolean replyHandler;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean localOnly;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(io.vertx.core.eventbus.impl.HandlerRegistration<T>, boolean, boolean, io.vertx.core.Context);
    descriptor: (Lio/vertx/core/eventbus/impl/HandlerRegistration;ZZLio/vertx/core/Context;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
        start local 1 // io.vertx.core.eventbus.impl.HandlerRegistration handler
        start local 2 // boolean replyHandler
        start local 3 // boolean localOnly
        start local 4 // io.vertx.core.Context context
         0: .line 28
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 4 /* context */
            putfield io.vertx.core.eventbus.impl.HandlerHolder.context:Lio/vertx/core/Context;
         2: .line 31
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
         3: .line 32
            aload 0 /* this */
            iload 2 /* replyHandler */
            putfield io.vertx.core.eventbus.impl.HandlerHolder.replyHandler:Z
         4: .line 33
            aload 0 /* this */
            iload 3 /* localOnly */
            putfield io.vertx.core.eventbus.impl.HandlerHolder.localOnly:Z
         5: .line 34
            return
        end local 4 // io.vertx.core.Context context
        end local 3 // boolean localOnly
        end local 2 // boolean replyHandler
        end local 1 // io.vertx.core.eventbus.impl.HandlerRegistration handler
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            0    6     1       handler  Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;
            0    6     2  replyHandler  Z
            0    6     3     localOnly  Z
            0    6     4       context  Lio/vertx/core/Context;
    Signature: (Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;ZZLio/vertx/core/Context;)V
    MethodParameters:
              Name  Flags
      handler       
      replyHandler  
      localOnly     
      context       

  boolean setRemoved();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 38
            iconst_0
            istore 1 /* unregistered */
        start local 1 // boolean unregistered
         1: .line 39
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 40
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.removed:Z
            ifne 5
         3: .line 41
            aload 0 /* this */
            iconst_1
            putfield io.vertx.core.eventbus.impl.HandlerHolder.removed:Z
         4: .line 42
            iconst_1
            istore 1 /* unregistered */
         5: .line 39
      StackMap locals: int io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack:
            aload 2
            monitorexit
         6: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 45
      StackMap locals:
      StackMap stack:
            iload 1 /* unregistered */
            ireturn
        end local 1 // boolean unregistered
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            1   10     1  unregistered  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any

  public synchronized boolean isRemoved();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.removed:Z
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
        start local 1 // java.lang.Object o
         0: .line 56
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 57
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 58
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.core.eventbus.impl.HandlerHolder
            astore 2 /* that */
        start local 2 // io.vertx.core.eventbus.impl.HandlerHolder that
         4: .line 59
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            ifnull 5
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            aload 2 /* that */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 7
            goto 6
      StackMap locals: io.vertx.core.eventbus.impl.HandlerHolder
      StackMap stack:
         5: aload 2 /* that */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            ifnull 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
         7: .line 60
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.core.eventbus.impl.HandlerHolder that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
            0    8     1     o  Ljava/lang/Object;
            4    8     2  that  Lio/vertx/core/eventbus/impl/HandlerHolder;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 65
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            invokevirtual java.lang.Object.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;

  public io.vertx.core.Context getContext();
    descriptor: ()Lio/vertx/core/Context;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 69
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.context:Lio/vertx/core/Context;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;

  public io.vertx.core.eventbus.impl.HandlerRegistration<T> getHandler();
    descriptor: ()Lio/vertx/core/eventbus/impl/HandlerRegistration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 73
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.handler:Lio/vertx/core/eventbus/impl/HandlerRegistration;
            areturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
    Signature: ()Lio/vertx/core/eventbus/impl/HandlerRegistration<TT;>;

  public boolean isReplyHandler();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 77
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.replyHandler:Z
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;

  public boolean isLocalOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
         0: .line 81
            aload 0 /* this */
            getfield io.vertx.core.eventbus.impl.HandlerHolder.localOnly:Z
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/HandlerHolder<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "HandlerHolder.java"