Searched refs:replies (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java39 private BlockingQueue<BerDecoder> replies; field in class:LdapRequest
53 this.replies = new LinkedBlockingQueue<BerDecoder>();
55 this.replies =
74 // Add a new reply to the queue of unprocessed replies.
76 replies.put(ber);
97 if (highWatermark != -1 && replies.size() >= highWatermark) {
113 BerDecoder reply = replies.poll();

Completed in 55 milliseconds