Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I implement a thread-safe list wrapper in Delphi?

I have a list wrapper that maintains two Tstringlists and a TClassList

I need this to be thread safe, such that:

  • Concurrent writes are not allowed (wait state of some sort should be entered)
  • Reading while writing (or vice versa) is not allowed (wait state of some sort should be entered)
  • Concurrent reads are allowed

Any ideas on how I can do this? My instinct tells me it needs more than just a critical section, perhaps a semaphore or "usage counter", perhaps one of these in conjunction with a CS.

I'm just not quite sure where to start - anything from an overall approach in english to psuedo-code, to delphi implementation or external link would be much appreciated.

like image 980
Graza Avatar asked Nov 19 '08 16:11

Graza


1 Answers

You should have a look at the TMultiReadExclusiveWriteSynchronizer class declared in sysutils.pas...

like image 112
Uwe Raabe Avatar answered Sep 22 '22 01:09

Uwe Raabe