C# Класс Novell.Directory.Ldap.LdapSearchQueue

A mechanism for queuing asynchronous search results received from a server.
Наследование: LdapMessageQueue
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
LdapSearchQueue ( MessageAgent agent ) : System

Constructs a response queue using a specific client queue

Описание методов

merge() публичный Метод

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.. ///
Результат void