jdk/src/share/classes/com/sun/jndi/ldap/EventSupport.java
changeset 25808 e113d0a0fde0
parent 10324 e28265130e4f
equal deleted inserted replaced
25807:6c325960c9ee 25808:e113d0a0fde0
    81  *existing notifier that's already working on the request. If one is
    81  *existing notifier that's already working on the request. If one is
    82  *found, the listener is added to the notifier's list. If one is not found,
    82  *found, the listener is added to the notifier's list. If one is not found,
    83  *a new notifier is created for the listener.
    83  *a new notifier is created for the listener.
    84  *
    84  *
    85  *<h4>Deregistration</h4>
    85  *<h4>Deregistration</h4>
    86  *When a deregistration request is made, this class attemps to find its
    86  *When a deregistration request is made, this class attempts to find its
    87  *corresponding notifier. If the notifier is found, the listener is removed
    87  *corresponding notifier. If the notifier is found, the listener is removed
    88  *from the notifier's list. If the listener is the last listener on the list,
    88  *from the notifier's list. If the listener is the last listener on the list,
    89  *the notifier's thread is terminated and removed from this class's hashtable.
    89  *the notifier's thread is terminated and removed from this class's hashtable.
    90  *Nothing happens if the notifier is not found.
    90  *Nothing happens if the notifier is not found.
    91  *
    91  *