Click here to Skip to main content
15,885,915 members
Articles / Mobile Apps
Article

CObjBroker - Limited Resource Broker class

Rate me:
Please Sign up or sign in to vote.
3.67/5 (2 votes)
8 Aug 20021 min read 40.6K   634   19   1
If you are working with limited resources in a multithreaded scenario, ObjBroker will help you...

Sample Image - demo.gif

Introduction

Sometimes we have multithreaded scenarios and always the problem is in concurrently accessing the same resource in two threads or more. So, common solution is each resource has a lock synchronization object. But it's not good if resources to be managed are many. How about safe resource manager from threads?

Object Broker

CObjBroker is manager class to distribute limited resources to threads. Surely CObjBro have to be thread-safe. (and I hope it is) See below:

Image 2

About Demo

In demo, there are two resources called 'bro1' and 'bro2' who is poor programmer ( it's me.. ) and a third thread called 'project manager' who wants to get 'bro'. 'pm1' and 'pm2 get 'bro', and keep 'bro' working until 'bro' is tired. If 'bro' is tired then release 'bro'. Last, 3rd 'pm' is good 'pm'. He gets 'bro', then he lets 'bro' rest. If 'bro' is afresh, then release for other worker 'pm's.

CBroBroker is driven from CObjBroker. And he manages 'bro's with std::list. Demo code is easy to read, so you can get an idea from CObjBroker.

I hope it helps you too. And I want your good advice and suggestion!

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


Written By
Software Developer
Korea (Republic of) Korea (Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalexcellent job! Pin
matrixnull22-Jan-10 17:10
matrixnull22-Jan-10 17:10 

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.