Click here to Skip to main content
15,883,883 members
Articles / General Programming / Threads

Smart Thread Pool

Rate me:
Please Sign up or sign in to vote.
4.96/5 (314 votes)
27 Aug 2012Ms-PL40 min read 2.2M   29.1K   1.1K  
A .NET Thread Pool fully implemented in C# with many features.
// Ami Bar
// amibar@gmail.com

using System;
using System.Runtime.Serialization;

namespace Amib.Threading
{
	#region Exceptions

	/// <summary>
	/// Represents an exception in case IWorkItemResult.GetResult has been canceled
	/// </summary>
	[Serializable]
	public sealed class WorkItemCancelException : ApplicationException
	{
		public WorkItemCancelException() : base()
		{
		}

		public WorkItemCancelException(string message) : base(message)
		{
		}

        public WorkItemCancelException(string message, Exception e) : base(message, e)
        {
        }

        public WorkItemCancelException(SerializationInfo si, StreamingContext sc) : base(si, sc)
        {
        }
    }

	/// <summary>
	/// Represents an exception in case IWorkItemResult.GetResult has been timed out
	/// </summary>
    [Serializable]
    public sealed class WorkItemTimeoutException : ApplicationException
    {
        public WorkItemTimeoutException() : base()
        {
        }

        public WorkItemTimeoutException(string message) : base(message)
        {
        }

        public WorkItemTimeoutException(string message, Exception e) : base(message, e)
        {
        }

        public WorkItemTimeoutException(SerializationInfo si, StreamingContext sc) : base(si, sc)
        {
        }
    }

	/// <summary>
	/// Represents an exception in case IWorkItemResult.GetResult has been timed out
	/// </summary>
	[Serializable]
	public sealed class WorkItemResultException : ApplicationException
	{
		public WorkItemResultException() : base()
		{
		}

		public WorkItemResultException(string message) : base(message)
		{
		}

		public WorkItemResultException(string message, Exception e) : base(message, e)
		{
		}

		public WorkItemResultException(SerializationInfo si, StreamingContext sc) : base(si, sc)
		{
		}
	}

	#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 Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
Israel Israel
B.Sc. in Computer Science.
Works as Software Developer.

Comments and Discussions