(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap / LdapResponseQueue.cs
blobaaf6ca6de3c256443a655487f41f7db87dcf8315
1 /******************************************************************************
2 * The MIT License
3 * Copyright (c) 2003 Novell Inc. www.novell.com
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the Software), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *******************************************************************************/
24 // Novell.Directory.Ldap.LdapResponseQueue.cs
26 // Author:
27 // Sunil Kumar (Sunilk@novell.com)
29 // (C) 2003 Novell, Inc (http://www.novell.com)
32 using System;
34 namespace Novell.Directory.Ldap
37 /// <summary> A mechanism for processing asynchronous messages received from a server.
38 /// It represents the message queue associated with a particular asynchronous
39 /// Ldap operation or operations.
40 /// </summary>
41 public class LdapResponseQueue:LdapMessageQueue
43 /// <summary> Constructs a response queue using the specified message agent
44 ///
45 /// </summary>
46 /// <param name="agent">The message agent to associate with this queue
47 /// </param>
48 /* package */
49 internal LdapResponseQueue(MessageAgent agent):base("LdapResponseQueue", agent)
51 return ;
54 /// <summary> Merges two message queues. It appends the current and
55 /// future contents from another queue to this one.
56 ///
57 /// After the operation, queue2.getMessageIDs()
58 /// returns an empty array, and its outstanding responses
59 /// have been removed and appended to this queue.
60 ///
61 /// </summary>
62 /// <param name="queue2"> The queue that is merged from. Following
63 /// the merge, this queue object will no
64 /// longer receive any data, and calls made
65 /// to its methods will fail with a RuntimeException.
66 /// The queue can be reactivated by using it in an
67 /// Ldap request, after which it will receive responses
68 /// for that request..
69 /// </param>
70 public virtual void merge(LdapMessageQueue queue2)
72 LdapResponseQueue q = (LdapResponseQueue) queue2;
73 agent.merge(q.MessageAgent);
75 return ;