Click here to Skip to main content
15,895,084 members
Articles / Programming Languages / C#

Browsing message queues with MQManager.NET

,
Rate me:
Please Sign up or sign in to vote.
4.85/5 (10 votes)
29 Dec 2008Apache6 min read 45.9K   483   21  
Adapting a stagnant Open Source project to meet my needs.
/*
 * Copyright 2005-2008 David H. DeWolf and Justin Dearing
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

using System;
using System.Collections.Generic;

namespace MQManager.SPI
{
	/// <summary>
	/// Interface for classes that represent a host's collections of queues.
	/// </summary>
    [CLSCompliant(false)]
    public interface IQueueHostInfo
	{
		// TODO: Refactor this to contain a collection of queue types. The private/pubic thing is MSMQ specific.
		
		/// <summary>
		/// The host's private queues.
		/// </summary>
        [CLSCompliant(false)]
        List<IMessagingProvider> PrivateQueues {
			get;
		}
		
		/// <summary>
		/// The host's public queues.
		/// </summary>
        [CLSCompliant(false)]
        List<IMessagingProvider> PublicQueues {
			get;
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Denmark Denmark
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions