tags:

views:

134

answers:

1

Are there any good examples of conflating queue in dotnet. I have thousands of messages per second coming in from another system and i wanted to see if this was the best solution and see some implementation examples

+1  A: 

Probably not the example you were after, but the best example is the UI message queue; mouse movement events can be conflated.

You could use MSMQ, and write custom code to perform the conflation.

Mitch Wheat