C# 클래스 Novell.Directory.Ldap.LdapResponseQueue

A mechanism for processing asynchronous messages received from a server. It represents the message queue associated with a particular asynchronous Ldap operation or operations.
상속: LdapMessageQueue
파일 보기 프로젝트 열기: EventStore/csharp-ldap 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
LdapResponseQueue ( MessageAgent agent ) : System

Constructs a response queue using the specified message agent

메소드 상세

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