C# Class Novell.Directory.Ldap.LdapSearchQueue

A mechanism for queuing asynchronous search results received from a server.
Inheritance: LdapMessageQueue
Afficher le fichier Open project: EventStore/csharp-ldap Class Usage Examples

Méthodes publiques

Méthode Description
merge ( LdapMessageQueue queue2 ) : void

Merges two message queues. It appends the current and future contents from another queue to this one. After the operation, queue2.getMessageIDs() returns an empty array, and its outstanding responses have been removed and appended to this queue.

Private Methods

Méthode Description
LdapSearchQueue ( MessageAgent agent ) : System

Constructs a response queue using a specific client queue

Method Details

merge() public méthode

Merges two message queues. It appends the current and future contents from another queue to this one. After the operation, queue2.getMessageIDs() returns an empty array, and its outstanding responses have been removed and appended to this queue.
public merge ( LdapMessageQueue queue2 ) : void
queue2 LdapMessageQueue The queue that is merged from. Following /// the merge, this queue object will no /// longer receive any data, and calls made /// to its methods will fail with a RuntimeException. /// The queue can be reactivated by using it in an /// Ldap request, after which it will receive responses /// for that request.. ///
Résultat void