Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good multithreading book for Delphi? [closed]

Where can I get a good book on Delphi threading. Something that will suit a total newcomer to the subject.

like image 855
AJ. Avatar asked Oct 27 '09 21:10

AJ.


2 Answers

Not a book, but the article Multithreading – The Delphi Way, by Martin Harvey, is a great start.

like image 97
Erwin Avatar answered Sep 21 '22 20:09

Erwin


The book Delphi™ 6 Developer’s Guide from Steve Teixeira and Xavier Pacheco has a full chapter called "Multithreaded Techniques". This is an excellent book .

alt text

Also you can check this serie of articles from the delphi corner site

  • Waiting for Threads
  • Running Queries in Threads
  • Creating threads straight from the WinAPI
  • How to interrupt a thread's execution
  • Thread Synchronization through Critical Sections

From Embarcadero

  • Using Semaphores in Delphi, Part 1
  • Using Semaphores in Delphi, Part 2: The Connection Pool

Bye.

like image 43
RRUZ Avatar answered Sep 20 '22 20:09

RRUZ