Skip to Main Content
Mastering Delphi Programming: A Complete Reference Guide
book

Mastering Delphi Programming: A Complete Reference Guide

by Primož Gabrijelčič
November 2019
Beginner to intermediate content levelBeginner to intermediate
674 pages
15h
English
Packt Publishing
Content preview from Mastering Delphi Programming: A Complete Reference Guide

Advanced TThread

The TThread class offers the programmer a collection of various properties and methods. In this section, I'll take you through the most useful ones.

The FatalException property deals with exceptions. If an exception arises inside your Execute method and is not caught, it will be handled inside the system code:

if not Thread.Terminated thentry  Thread.Execute;except  Thread.FFatalException := AcquireExceptionObject;end;

The best place to check whether this property is assigned is the OnTerminate handler. If the FatalException is not nil, we can log the exception and call ReleaseExceptionObject to destroy the exception object or we can reraise the exception. The following code from the Threads demo shows how to implement such ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Delphi GUI Programming with FireMonkey

Delphi GUI Programming with FireMonkey

Andrea Magni
Delphi Cookbook - Third Edition

Delphi Cookbook - Third Edition

Daniele Spinetti, Daniele Teti

Publisher Resources

ISBN: 9781838989118Other