Click here to Skip to main content
15,896,456 members
Articles / Programming Languages / C#
Article

A Message Loop object

Rate me:
Please Sign up or sign in to vote.
4.56/5 (13 votes)
29 Aug 2005CPOL2 min read 51.6K   777   30   9
Asynchronous sequential execution of methods using a message loop.

Sample Image - messageloop.jpg

Introduction

Let's look at the following scenario: you have an object that should do something asynchronously. However, if the same action is required many times, you want to keep the order of the original calls. In other words, you want the object to keep an internal buffer of calls, and process them sequentially on a separate thread (all in the same thread that is different from the calling thread). We all know this simply as: a message loop.

This could be regarded as a specific case for a 1-thread threadpool. However, since it is a special case, you can make it much simpler than a fully functional threadpool. BTW, if you want a really well-implemented, feature-rich threadpool, you should definitely have a look at Ami Bar's Smart Thread Pool.

How does it work?

All calls are saved in an internal queue. The queue is emptied by one single thread in sequential order (FIFO), and each time an item is extracted from the queue, its corresponding action is executed. The objects in the queue hold a delegate to the method to be invoked and a state object, similar to ThreadPools.

To avoid overfilling the buffer, you can predefine a maximum buffer size. When the buffer reaches that size, any additional message is being dropped, until some free space is available on the buffer (the default size is int.Max).

Where did I find it useful?

I have several places where I have to read messages from a MSMQ queue and do something upon receiving a message. Sometimes, the order of the messages is very important, and I should not start running with one message before the previous ones are completed. Another good example is with various logging mechanisms. With logging, the order of the messages is extremely important. However, you want the thread to return to the caller as soon as possible, in order to diminish the overhead of using logging. So using a message loop, I can put the message to the queue real fast, and log it in the background, hence providing asynchronous sequential logging.

What's in the demo?

The demo is really simple, it just shows you that the messages are indeed processed in the order in which they were added to the queue. As a contrast, you can unmark the line that sends the messages to the thread pool and see the difference.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Israel Israel
I am an MSc. student at the Interdisciplinary Center Herzlia, Israel (www.idc.ac.il)
Also, I work as private consultant in the fields of OOP/OOD, C++, C#, SQL Server and solving complex problems with AI and Machine Learning methods.
See my Blog at: http://ilanas.blogspot.com/

Comments and Discussions

 
GeneralMessage Closed Pin
31-Jan-09 21:29
mohammad-mirshahi31-Jan-09 21:29 
GeneralRe: israel is rubish... Pin
Jim Crafton3-Mar-09 10:45
Jim Crafton3-Mar-09 10:45 
GeneralRe: israel is rubish... Pin
Dewey17-Nov-09 13:05
Dewey17-Nov-09 13:05 
QuestionHave you got Unit test for this project? Pin
leeanthonyw6811-Jul-08 4:54
leeanthonyw6811-Jul-08 4:54 
AnswerRe: Have you got Unit test for this project? Pin
Ilan Assayag11-Jul-08 18:08
Ilan Assayag11-Jul-08 18:08 
GeneralUnit Tests Pin
leeanthonyw6811-Jul-08 4:18
leeanthonyw6811-Jul-08 4:18 
QuestionWhy do we need Interlockeds in AddToBuffer? Pin
fengtian13-Nov-06 3:12
fengtian13-Nov-06 3:12 
AnswerRe: Why do we need Interlockeds in AddToBuffer? Pin
Ilan Assayag13-Nov-06 5:48
Ilan Assayag13-Nov-06 5:48 
GeneralRe: Why do we need Interlockeds in AddToBuffer? Pin
fengtian13-Nov-06 7:58
fengtian13-Nov-06 7:58 

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

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