Related resources for Multithreaded Program
  • Using the BackgroundWorker component9/17/2018 5:54:03 AM. This article discusses the BackgroundWorker component in .NET 2.0, it will show you how to use it to execute tasks in the background of your application. BackgroundWorker
  • Lengthy Operations on Single Thread in .NET Applications1/28/2006 1:18:44 AM. In this article I discuss how the lenghty operations can be handled in a .NET application. I also discuss how the stack trace can be examined to find any specific methods.
  • Consumer/Producer Multithreaded Program1/28/2006 12:21:10 AM. This is simple multi-threading program that adds and removes elements in an ArrayList. Producer button will creates a producer thread that adds elements in to the ArrayList. The maximum number of elements can be added to this ArrayList are 100 elements and the producer thread has to wait until the consumer thread/threads (creates by pressing consumer button) removes elements from the ArrayList. Then Producer thread starts to add more elements to the ArrayList.
  • Handling the Queuing of Messages in a Multithreaded Program1/27/2006 5:52:54 AM. In the financial world you have to deal with messages being spewed at you in large quantities at a rapid rate. For example stock quotes, market data, and orders come flying at you through some sort of wire and you as a programmer have to handle them in a way that doesn’t overwhelm you or the machine.