Articles related to "Tthread"
Client requests handling.
One of common usage of threads is a client request processing.Server
application should create one or more threads per client in order
to process their requests concurrently without blocking. This
article is dedicated to common way of creating threads that
process messages (or "client requests") sequentially.
thread
• threads
• tthread
• delphi
• windows
Using collections. Part1.
This article starts new series that is dedicated to some
useful VCL classes.
Now let' look at TCollection class. TCollection is a container
for TCollectionItem objects. The VCL controls (such as TDBGrid,
TListView, TStatusBar, etc) widely use objects derived from
TCollection.
thread
• threads
• tthread
• delphi
• windows
Windows and message handling. Part 1
As far as you know, a window in an application written for the
Microsoft Windows operating system is a rectangular area of the
screen where the application displays output and receives input
from the user. A window can be a target of messages – memory
area that contains two parameters.
It's easy to use windows for inter-thread communication.
thread
• threads
• tthread
• delphi
• windows
RTTI Part 5. Summary.
RTTI is undocumented in Delphi 3,Delphi 4, Delphi 5 as well as in any version of C++ Builder. There are two places
where you can find information about RTTI - typinfo.pas source file, which is located in X:\delphi\Source\VCL
directory and this article. This article contains a complete listing of RTTI types, functions and procedures.
thread
• threads
• tthread
• delphi
• windows
TThreadComponent
Imagine that your application needs to perform a time-consuming operation (such as an automation server call, saving
data to a disk file, exporting data to database server, etc). While your application is busy, user relaxes in the armchair
and stupidly looks at display. Is there anyone who likes it? Moreover, Windows do not even redraw an application's
form. You already know how to perform operation simultaneously with threads (if not - see previous articles). Now let's
look to a TThreadComponent - a native VCL component that allows quick and easy threading. The code is written by
me and it was tested in several applications. It is free for Suite101 members!
thread
• threads
• tthread
• delphi
• windows