API:System.Threading.TThreadPool.TQueueWorkerThread.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TQueueWorkerThread();

Properties

Type Visibility Source Unit Parent
destructor public
System.Threading.pas
System.Threading.hpp
System.Threading TQueueWorkerThread

Description

Destroys the thread object and releases the memory allocated to it.

System.Threading.TThreadPool.TQueueWorkerThread.Destroy inherits from System.Threading.TThreadPool.TBaseWorkerThread.Destroy. All content below this line refers to System.Threading.TThreadPool.TBaseWorkerThread.Destroy.

Destroys the thread object and releases the memory allocated to it.

Do not call Destroy directly. Instead, use Free to destroy a thread when FreeOnTerminate is False. You can alternatively use SafeTerminate.

Destroy signals the thread to terminate and then waits for the thread to return before calling the inherited Destroy method.

See Also