[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Indicates whether the thread should free itself when it stops executing.
Source position: classesh.inc line 1829
public property TThread.FreeOnTerminate : Boolean |
FreeOnTerminate, when set to True indicates that the tread instance will freed automatically as soon as the thread stops executing. You can use the OnTerminate property to get a notification of when the thread has terminated and will be freed.
When setting this property to True, in general you may not read or write any property of the TThread instance from a different thread, because there is no guarantee that the thread instance still exists in memory. This implies 2 things:
|
Event called when the thread terminates. |