Click here to Skip to main content
15,891,529 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.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmartThreadPool", "SmartThreadPool\SmartThreadPool.csproj", "{8684FC56-A679-4E2E-8F96-E172FB062EB6}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "STPExamples", "STPExamples\STPExamples.csproj", "{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "STPTests", "STPTests\STPTests.csproj", "{6A3E4DBF-12AD-4636-ACB3-24B5172FAE03}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{8684FC56-A679-4E2E-8F96-E172FB062EB6}.Debug.ActiveCfg = Debug|.NET
		{8684FC56-A679-4E2E-8F96-E172FB062EB6}.Debug.Build.0 = Debug|.NET
		{8684FC56-A679-4E2E-8F96-E172FB062EB6}.Release.ActiveCfg = Release|.NET
		{8684FC56-A679-4E2E-8F96-E172FB062EB6}.Release.Build.0 = Release|.NET
		{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}.Debug.ActiveCfg = Debug|.NET
		{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}.Debug.Build.0 = Debug|.NET
		{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}.Release.ActiveCfg = Release|.NET
		{AE943A5A-7CFD-4E0D-BA51-FB763AAEA9A3}.Release.Build.0 = Release|.NET
		{6A3E4DBF-12AD-4636-ACB3-24B5172FAE03}.Debug.ActiveCfg = Debug|.NET
		{6A3E4DBF-12AD-4636-ACB3-24B5172FAE03}.Debug.Build.0 = Debug|.NET
		{6A3E4DBF-12AD-4636-ACB3-24B5172FAE03}.Release.ActiveCfg = Release|.NET
		{6A3E4DBF-12AD-4636-ACB3-24B5172FAE03}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

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