Click here to Skip to main content
15,885,947 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.
using System;
using System.Threading;

using NUnit.Framework;

using Amib.Threading;

namespace SmartThreadPoolTests
{
	/// <summary>
	/// Summary description for TestChainedDelegates.
	/// </summary>
	[TestFixture]
	[Category("TestChainedDelegates")]
	public class TestChainedDelegates
	{
		public TestChainedDelegates()
		{
		}

		[Test]
		public void GoodCallback()
		{
			SmartThreadPool stp = new SmartThreadPool();

			stp.QueueWorkItem(new WorkItemCallback(DoWork));

			stp.WaitForIdle();

			stp.Shutdown();
		}

		[Test]
		[ExpectedException(typeof(NotSupportedException))]
		public void ChainedDelegatesCallback()
		{
			SmartThreadPool stp = new SmartThreadPool();

			WorkItemCallback workItemCallback = new WorkItemCallback(DoWork);
			workItemCallback += new WorkItemCallback(DoWork);

			stp.QueueWorkItem(workItemCallback);

			stp.WaitForIdle();

			stp.Shutdown();
		}

		[Test]
		public void GoodPostExecute()
		{
			SmartThreadPool stp = new SmartThreadPool();

			stp.QueueWorkItem(
				new WorkItemCallback(DoWork),
				null,
				new PostExecuteWorkItemCallback(DoPostExecute));

			stp.WaitForIdle();

			stp.Shutdown();
		}

		[Test]
		[ExpectedException(typeof(NotSupportedException))]
		public void ChainedDelegatesPostExecute()
		{
			SmartThreadPool stp = new SmartThreadPool();

			PostExecuteWorkItemCallback postExecuteWorkItemCallback = 
				new PostExecuteWorkItemCallback(DoPostExecute);
			postExecuteWorkItemCallback += 
				new PostExecuteWorkItemCallback(DoPostExecute);

			stp.QueueWorkItem(
				new WorkItemCallback(DoWork),
				null,
				postExecuteWorkItemCallback);

			stp.WaitForIdle();

			stp.Shutdown();
		}


		private object DoWork(object state)
		{
			return null;
		}

		private void DoPostExecute(IWorkItemResult wir)
		{
		}


	}
}

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