Click here to Skip to main content
15,897,518 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 42K   1.2K   45  
Basic Implementation of a Memory Queue, Thread Queue and Basic Logging Framework
using System.Text;
using Yakiloo.Logging.Interfaces;
using Yakiloo.Logging.Utilities;

namespace Yakiloo.Logging.Tests
{
	internal class Formatter : IFormatter
	{
		#region IFormatter

		public string LogHeader
		{
			get
			{
				return "DataGeneratedDateTime|Message";
			}
		}

		public string Format(object data)
		{
			TestLogData logData = data as TestLogData;

			StringBuilder builder = new StringBuilder();

			builder
				.Append(DateUtilities.FormatDate(logData.DataGeneratedDateTime))
				.Append("|")
				.Append(logData.Message);

			return builder.ToString();
		}

		#endregion IFormatter
	}
}

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