final class com.sun.jndi.ldap.EventQueue implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.jndi.ldap.EventQueue
  super_class: java.lang.Object
{
  private static final boolean debug;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private com.sun.jndi.ldap.EventQueue$QueueElement head;
    descriptor: Lcom/sun/jndi/ldap/EventQueue$QueueElement;
    flags: (0x0002) ACC_PRIVATE

  private com.sun.jndi.ldap.EventQueue$QueueElement tail;
    descriptor: Lcom/sun/jndi/ldap/EventQueue$QueueElement;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Thread qThread;
    descriptor: Ljava/lang/Thread;
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.EventQueue this
         0: .line 68
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 0 /* this */
            aconst_null
            putfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         2: .line 64
            aload 0 /* this */
            aconst_null
            putfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         3: .line 69
            aload 0 /* this */
            getstatic com.sun.jndi.ldap.Obj.helper:Lcom/sun/jndi/ldap/VersionHelper;
            aload 0 /* this */
            invokevirtual com.sun.jndi.ldap.VersionHelper.createThread:(Ljava/lang/Runnable;)Ljava/lang/Thread;
            putfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
         4: .line 70
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
         5: .line 71
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
         6: .line 72
            return
        end local 0 // com.sun.jndi.ldap.EventQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/jndi/ldap/EventQueue;

  synchronized void enqueue(java.util.EventObject, java.util.Vector);
    descriptor: (Ljava/util/EventObject;Ljava/util/Vector;)V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.jndi.ldap.EventQueue this
        start local 1 // java.util.EventObject event
        start local 2 // java.util.Vector vector
         0: .line 91
            new com.sun.jndi.ldap.EventQueue$QueueElement
            dup
            aload 1 /* event */
            aload 2 /* vector */
            invokespecial com.sun.jndi.ldap.EventQueue$QueueElement.<init>:(Ljava/util/EventObject;Ljava/util/Vector;)V
            astore 3 /* newElt */
        start local 3 // com.sun.jndi.ldap.EventQueue$QueueElement newElt
         1: .line 93
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            ifnonnull 5
         2: .line 94
            aload 0 /* this */
            aload 3 /* newElt */
            putfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         3: .line 95
            aload 0 /* this */
            aload 3 /* newElt */
            putfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         4: .line 96
            goto 8
         5: .line 97
      StackMap locals: com.sun.jndi.ldap.EventQueue$QueueElement
      StackMap stack:
            aload 3 /* newElt */
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            putfield com.sun.jndi.ldap.EventQueue$QueueElement.next:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         6: .line 98
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            aload 3 /* newElt */
            putfield com.sun.jndi.ldap.EventQueue$QueueElement.prev:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         7: .line 99
            aload 0 /* this */
            aload 3 /* newElt */
            putfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         8: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.notify:()V
         9: .line 102
            return
        end local 3 // com.sun.jndi.ldap.EventQueue$QueueElement newElt
        end local 2 // java.util.Vector vector
        end local 1 // java.util.EventObject event
        end local 0 // com.sun.jndi.ldap.EventQueue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/jndi/ldap/EventQueue;
            0   10     1   event  Ljava/util/EventObject;
            0   10     2  vector  Ljava/util/Vector;
            1   10     3  newElt  Lcom/sun/jndi/ldap/EventQueue$QueueElement;
    MethodParameters:
        Name  Flags
      event   
      vector  

  private synchronized com.sun.jndi.ldap.EventQueue$QueueElement dequeue();
    descriptor: ()Lcom/sun/jndi/ldap/EventQueue$QueueElement;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.jndi.ldap.EventQueue this
         0: .line 114
            goto 2
         1: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.wait:()V
         2: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            ifnull 1
         3: .line 116
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            astore 1 /* elt */
        start local 1 // com.sun.jndi.ldap.EventQueue$QueueElement elt
         4: .line 117
            aload 0 /* this */
            aload 1 /* elt */
            getfield com.sun.jndi.ldap.EventQueue$QueueElement.prev:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            putfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         5: .line 118
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            ifnonnull 8
         6: .line 119
            aload 0 /* this */
            aconst_null
            putfield com.sun.jndi.ldap.EventQueue.head:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         7: .line 120
            goto 9
         8: .line 121
      StackMap locals: com.sun.jndi.ldap.EventQueue$QueueElement
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.tail:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            aconst_null
            putfield com.sun.jndi.ldap.EventQueue$QueueElement.next:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
         9: .line 123
      StackMap locals:
      StackMap stack:
            aload 1 /* elt */
            aload 1 /* elt */
            aconst_null
            dup_x1
            putfield com.sun.jndi.ldap.EventQueue$QueueElement.next:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            putfield com.sun.jndi.ldap.EventQueue$QueueElement.prev:Lcom/sun/jndi/ldap/EventQueue$QueueElement;
        10: .line 124
            aload 1 /* elt */
            areturn
        end local 1 // com.sun.jndi.ldap.EventQueue$QueueElement elt
        end local 0 // com.sun.jndi.ldap.EventQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/jndi/ldap/EventQueue;
            4   11     1   elt  Lcom/sun/jndi/ldap/EventQueue$QueueElement;
    Exceptions:
      throws java.lang.InterruptedException

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // com.sun.jndi.ldap.EventQueue this
         0: .line 134
            goto 20
        start local 1 // com.sun.jndi.ldap.EventQueue$QueueElement qe
         1: .line 135
      StackMap locals: com.sun.jndi.ldap.EventQueue$QueueElement
      StackMap stack:
            aload 1 /* qe */
            getfield com.sun.jndi.ldap.EventQueue$QueueElement.event:Ljava/util/EventObject;
            astore 2 /* e */
        start local 2 // java.util.EventObject e
         2: .line 136
            aload 1 /* qe */
            getfield com.sun.jndi.ldap.EventQueue$QueueElement.vector:Ljava/util/Vector;
            astore 3 /* v */
        start local 3 // java.util.Vector v
         3: .line 138
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 18
         5: .line 147
      StackMap locals: java.util.EventObject java.util.Vector int
      StackMap stack:
            aload 2 /* e */
            instanceof javax.naming.event.NamingEvent
            ifeq 8
         6: .line 148
            aload 2 /* e */
            checkcast javax.naming.event.NamingEvent
            aload 3 /* v */
            iload 4 /* i */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.naming.event.NamingListener
            invokevirtual javax.naming.event.NamingEvent.dispatch:(Ljavax/naming/event/NamingListener;)V
         7: .line 151
            goto 17
      StackMap locals:
      StackMap stack:
         8: aload 2 /* e */
            instanceof javax.naming.event.NamingExceptionEvent
            ifeq 13
         9: .line 152
            aload 2 /* e */
            checkcast javax.naming.event.NamingExceptionEvent
        10: .line 153
            aload 3 /* v */
            iload 4 /* i */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.naming.event.NamingListener
        11: .line 152
            invokevirtual javax.naming.event.NamingExceptionEvent.dispatch:(Ljavax/naming/event/NamingListener;)V
        12: .line 154
            goto 17
      StackMap locals:
      StackMap stack:
        13: aload 2 /* e */
            instanceof javax.naming.ldap.UnsolicitedNotificationEvent
            ifeq 17
        14: .line 155
            aload 2 /* e */
            checkcast javax.naming.ldap.UnsolicitedNotificationEvent
        15: .line 156
            aload 3 /* v */
            iload 4 /* i */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.naming.ldap.UnsolicitedNotificationListener
        16: .line 155
            invokevirtual javax.naming.ldap.UnsolicitedNotificationEvent.dispatch:(Ljavax/naming/ldap/UnsolicitedNotificationListener;)V
        17: .line 138
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 4 /* i */
            aload 3 /* v */
            invokevirtual java.util.Vector.size:()I
            if_icmplt 5
        end local 4 // int i
        19: .line 160
            aconst_null
            astore 1 /* qe */
            aconst_null
            astore 2 /* e */
            aconst_null
            astore 3
        end local 3 // java.util.Vector v
        end local 2 // java.util.EventObject e
        end local 1 // com.sun.jndi.ldap.EventQueue$QueueElement qe
        20: .line 134
      StackMap locals: com.sun.jndi.ldap.EventQueue
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jndi.ldap.EventQueue.dequeue:()Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            dup
            astore 1 /* qe */
        start local 1 // com.sun.jndi.ldap.EventQueue$QueueElement qe
        21: ifnonnull 1
        22: .line 162
            goto 24
        end local 1 // com.sun.jndi.ldap.EventQueue$QueueElement qe
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        23: pop
        24: .line 165
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.jndi.ldap.EventQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Lcom/sun/jndi/ldap/EventQueue;
            1   20     1    qe  Lcom/sun/jndi/ldap/EventQueue$QueueElement;
           21   23     1    qe  Lcom/sun/jndi/ldap/EventQueue$QueueElement;
            2   20     2     e  Ljava/util/EventObject;
            3   20     3     v  Ljava/util/Vector;
            4   19     4     i  I
      Exception table:
        from    to  target  type
           0    22      23  Class java.lang.InterruptedException

  void stop();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jndi.ldap.EventQueue this
         0: .line 173
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
            ifnull 3
         1: .line 174
            aload 0 /* this */
            getfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.interrupt:()V
         2: .line 175
            aload 0 /* this */
            aconst_null
            putfield com.sun.jndi.ldap.EventQueue.qThread:Ljava/lang/Thread;
         3: .line 177
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.jndi.ldap.EventQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/jndi/ldap/EventQueue;
}
SourceFile: "EventQueue.java"
NestMembers:
  com.sun.jndi.ldap.EventQueue$QueueElement
InnerClasses:
  private QueueElement = com.sun.jndi.ldap.EventQueue$QueueElement of com.sun.jndi.ldap.EventQueue