Is there any analog for Delphi that specify that some thread is background thread? As for .NET I can say SomeThread.IsBackground = true; and this thread will become background.
Thanks in advance!
| |||||||||||||
feedback
|
|
The .net documentation describes the IsBackground property like this:
A Delphi process terminates when the main function in the .dpr file completes. This main function always runs in the context of the main process thread, that is the thread that is automatically created by the system when the process starts. So, in Delphi there is no equivalent property. There is a single foreground thread, the main thread, and all other threads are background thread, using the .net terminology. A thread cannot, at runtime, change state from foreground to background, or vice versa. | ||||
|
feedback
|
|
To verify that the current thread is the main VCL thread, check TThread.CurrentThread.ThreadID = MainThreadID(*). The main VCL thread is supposed to stay the foreground thread, and is the only thread where the GUI should be updated, so the answer to your question is "no". If you are using a recent version of Delphi you can however make use of TThread.CreateAnonymousThread and TThread.Synchronize in order to have anonymous methods executed in either a background thread or in the main VCL thread, respectively. *) Please note that the CurrentThread class property was added only a few versions back. If you are using an old Delphi version, such as Borland Delphi 7, you can only perform this check from within the execute method of the thread (or from any method that is called by Execute etc). | ||||
|
feedback
|
|
In Delphi, every thread except the main thread is a background thread. That's why you can only update the GUI from the main thread. | |||
|
feedback
|