Click here to Skip to main content
15,885,032 members
Articles / Programming Languages / Visual Basic
Article

Synchronizing Multiple Threads in the ThreadPool

Rate me:
Please Sign up or sign in to vote.
3.40/5 (5 votes)
17 Jan 2006CPOL 32.6K   1.5K   18  
An article on thread synchronization and usage of ThreadPool
Sample Image - PoolSynchronization.jpg

Introduction

This snippet demonstrates one way of synchronizing multiple user worker threads by means of ManualResetEvents. I came across the question wherein you might have a number of computational threads and each thread has a number of computational stages. The constraint was that none of the threads can proceed to the next stage 'n+1' unless all threads completed stage 'n'.

Background

ThreadPool is beneficial in cases when the threads are not highly CPU intensive and are not prioritized. By using the thread pool, you save valuable resources on the actual thread creation.

Using the Code

The project consists of three main objects:

  • The GUI frmSwitchBoard
  • The synchronizing object CPoolSynchronizer
  • The object CComputeItem containing compute functions 'func'

From the GUI, you can control how many compute threads you wish to place in the ThreadPool.

You might also find it useful how to interact with WinForm controls asynchronously. CComputeItems update the progress independently from each other by calling Invoke() on the control.

History

  • 17th January, 2006 - Initial version submitted

License

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


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --