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

Memory Queue

Rate me:
Please Sign up or sign in to vote.
4.93/5 (12 votes)
21 Mar 2011CPOL12 min read 41.9K   1.2K   45  
Basic Implementation of a Memory Queue, Thread Queue and Basic Logging Framework
namespace Yakiloo.Logging.Configuration
{
	public class LoggingSettings
	{
		/// <summary>
		/// The path where the logs should be written.
		/// </summary>
		public string LogPath { get; set; }

		/// <summary>
		/// The name that should be used for the Log File.
		/// </summary>
		public string LogName { get; set; }

		/// <summary>
		/// The extension that should be used for the Log File.
		/// </summary>
		public string LogExtension { get; set; }

		/// <summary>
		/// The number of lines that should be written to the Log File.
		/// </summary>
		public int BufferSize { get; set; }
	}
}

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 Code Project Open License (CPOL)


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

Comments and Discussions