Click here to Skip to main content
15,891,567 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.8K   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;

namespace MQManager.SPI
{
	/// <summary>
	/// A provider for a collection of messages of some type. E.g. a MSMQ.
    /// </summary>
    [CLSCompliant(false)]
    public interface IMessagingProvider
	{
		/// <summary>
		/// The name of the instance of the messaging provider.
		/// </summary>
        string Name { get; }

        /// <summary>
        /// The number of messages in the queue.
        /// </summary>
        [CLSCompliant(false)]
        uint MessageCount { get; }
		
		/// <summary>
		/// Gets all the messages for the provider.
		/// </summary>
		/// <returns>a list of messages for the provider.</returns>
		IList GetMessageHeaders();

		IMessageContents PreviewMessage(IMessageHeader header);

		IMessageContents GetMessage(IMessageHeader header);

        void Send(IMessageContents contents);


		#region Transaction Management
		/// <summary>
		/// Begin a messaging transaction
		/// </summary>
		IMessagingTransaction BeginTransaction();

		/// <summary>
		/// Begin a shared transaction with the specified provider
		/// </summary>
		/// <param name="transaction"></param>
		void ShareTransaction(IMessagingTransaction transaction);

		/// <summary>
		/// Commit a messaging transaction
		/// </summary>
		void CommitTransaction();

		/// <summary>
		/// Begin a messaging transaction
		/// </summary>
		void RollbackTransaction();
		#endregion

	}
}

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