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

  public final T handler;
    descriptor: Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Signature: TT;

  public void <init>(io.vertx.core.impl.ContextInternal, );
    descriptor: (Lio/vertx/core/impl/ContextInternal;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.HandlerHolder this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // java.lang.Object handler
         0: .line 23
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            aload 1 /* context */
            putfield io.vertx.core.net.impl.HandlerHolder.context:Lio/vertx/core/impl/ContextInternal;
         2: .line 25
            aload 0 /* this */
            aload 2 /* handler */
            putfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
         3: .line 26
            return
        end local 2 // java.lang.Object handler
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.net.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/net/impl/HandlerHolder<TT;>;
            0    4     1  context  Lio/vertx/core/impl/ContextInternal;
            0    4     2  handler  TT;
    Signature: (Lio/vertx/core/impl/ContextInternal;TT;)V
    MethodParameters:
         Name  Flags
      context  
      handler  

  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.net.impl.HandlerHolder this
        start local 1 // java.lang.Object o
         0: .line 30
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 31
      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 33
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.core.net.impl.HandlerHolder
            astore 2 /* that */
        start local 2 // io.vertx.core.net.impl.HandlerHolder that
         4: .line 35
            aload 0 /* this */
            getfield io.vertx.core.net.impl.HandlerHolder.context:Lio/vertx/core/impl/ContextInternal;
            aload 2 /* that */
            getfield io.vertx.core.net.impl.HandlerHolder.context:Lio/vertx/core/impl/ContextInternal;
            if_acmpeq 5
            iconst_0
            ireturn
         5: .line 36
      StackMap locals: io.vertx.core.net.impl.HandlerHolder
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
            ifnull 6
            aload 0 /* this */
            getfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
            aload 2 /* that */
            getfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 8
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 2 /* that */
            getfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
            ifnull 8
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
         8: .line 38
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.core.net.impl.HandlerHolder that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.core.net.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/core/net/impl/HandlerHolder<TT;>;
            0    9     1     o  Ljava/lang/Object;
            4    9     2  that  Lio/vertx/core/net/impl/HandlerHolder;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.net.impl.HandlerHolder this
         0: .line 43
            aload 0 /* this */
            getfield io.vertx.core.net.impl.HandlerHolder.context:Lio/vertx/core/impl/ContextInternal;
            invokevirtual java.lang.Object.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 44
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.impl.HandlerHolder.handler:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 45
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.core.net.impl.HandlerHolder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/net/impl/HandlerHolder<TT;>;
            1    3     1  result  I
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "HandlerHolder.java"