Click here to Skip to main content
Licence 
First Posted 23 Mar 2003
Views 43,878
Bookmarked 22 times

Multi-threaded polling process - base for NT-Service

By | 23 Mar 2003 | Article
This is a simple skeleton for a multi-thread process or services

Sample Image - PGThreads.gif

Introduction

This sample code may be use as a basic skeleton for a multi-threaded process or service.

Background (optional)

Article "A simple tutorial on Multithreaded Programming using C#" from Zeeshan Amjad may be useful for beginners.

Using the code

To use the code:

  • create a new Console Application (or a Windows Services),
  • Replace [STAThread] attribute by [MTAThread] attribute of the Main method (for Console Application),
  • add WorkerThread.cs and WorkerThreadManager.cs files to your projet,
  • modify the DoSomethingUseful method by providing your task,
  • create a new WorkerThreadManager,
  • call Start / Stop methods.

That's it.

Example of basic main method:

// Any source code blocks look like this
[MTAThread]
static void Main(string[] args)
{
    String sCmd; WorkerThreadManager oManager = new WorkerThreadManager();

    for (;;)
    { 
        Console.WriteLine("EXIT/START/STOP"); 
        Console.Write("$ "); 
        sCmd = Console.ReadLine ();
        if (sCmd.ToUpper() == "EXIT")
        {
            // Stop manager and exit loop
            // oManager.Stop();
            break;
        }

        if (sCmd.ToUpper() == "START")
        {
            // Start manager
            // oManager.Start();
        }
        else if (sCmd.ToUpper() == "STOP")
        {
            // Stop manager
            // oManager.Stop();
        }
    }
} 

Points of Interest

This code is the basic skeleton of one of our high availability SMS (Short Message System) platform. It actually handles a couple of million of SMS per month on a 24/7 basis. 

History

  • 24th March, 2003 - First revision.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

pgrenette

Web Developer

France France

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionInfo about this kind of project PinmemberJLuisEstrada7:42 26 Apr '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 Mar 2003
Article Copyright 2003 by pgrenette
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid