TROPerClientClassFactory_TimeoutThread
Overview
The TROPerClientClassFactory_TimeoutThread is used internally by theTROPerClientClassFactory to periodically call the TimeoutSessions method.
Location
- Unit: uROClassFactories.pas
- Ancestry: TThread | TROInitializedThread | TROThread | TROPerClientClassFactory_TimeoutThread
constructor Create (Boolean) (declared in TROInitializedThread)
Creates a new class instance (standard thread class constructor).
constructor Create(CreateSuspended: Boolean)
Parameters:
- CreateSuspended: When set to true, this parameter allows to create a thread that will not be started right after it is created. This allows to do some thread class configuration before the execution begins.
constructor Create (Boolean, string) (declared in TROThread)
Initializes the instance with the given arguments.
constructor Create(iCreateSuspended: Boolean; const iName: string)
Parameters:
- iCreateSuspended: If true, Execute won’t be called until after Resume is called; if false, Execute is called immediately.
- iName: Become the value of the Name property.
constructor Create (TROPerClientClassFactory, integer)
Creates a new instance and initializes an interval between TimeoutSessions invocations (minimum is 10 sec).
constructor Create(iOwner: TROPerClientClassFactory; iTimeoutSeconds: integer)
Parameters:
- iOwner: Owner
- iTimeoutSeconds: Timeout
DoTerminate protected override (declared in TROThread)
procedure DoTerminate
Execute protected override (declared in TROInitializedThread)
This method will be executed on the background thread, and should contain the user code. In this class, the Execute method must not be overridden in descendant classes, override IntExecute instead.
procedure Execute
Free reintroduce (declared in TROThread)
procedure Free
Name protected (declared in TROThread)
Sets a readable name for the thread.
property Name: string read write
TerminateWaitFor virtual (declared in TROThread)
Utility method that combines a call to Terminate with a subsequent call to WaitFor.
procedure TerminateWaitFor
WaitFor reintroduce (declared in TROThread)
Blocks the current thread until the current event receives a signal.
function WaitFor: Cardinal
Name protected (declared in TROThread)
Sets a readable name for the thread.
property Name: string read write
constructor Create (Boolean) (declared in TROInitializedThread)
Creates a new class instance (standard thread class constructor).
constructor Create(CreateSuspended: Boolean)
Parameters:
- CreateSuspended: When set to true, this parameter allows to create a thread that will not be started right after it is created. This allows to do some thread class configuration before the execution begins.
constructor Create (Boolean, string) (declared in TROThread)
Initializes the instance with the given arguments.
constructor Create(iCreateSuspended: Boolean; const iName: string)
Parameters:
- iCreateSuspended: If true, Execute won’t be called until after Resume is called; if false, Execute is called immediately.
- iName: Become the value of the Name property.
constructor Create (TROPerClientClassFactory, integer)
Creates a new instance and initializes an interval between TimeoutSessions invocations (minimum is 10 sec).
constructor Create(iOwner: TROPerClientClassFactory; iTimeoutSeconds: integer)
Parameters:
- iOwner: Owner
- iTimeoutSeconds: Timeout
DoTerminate protected override (declared in TROThread)
procedure DoTerminate
Execute protected override (declared in TROInitializedThread)
This method will be executed on the background thread, and should contain the user code. In this class, the Execute method must not be overridden in descendant classes, override IntExecute instead.
procedure Execute
Free reintroduce (declared in TROThread)
procedure Free
TerminateWaitFor virtual (declared in TROThread)
Utility method that combines a call to Terminate with a subsequent call to WaitFor.
procedure TerminateWaitFor
WaitFor reintroduce (declared in TROThread)
Blocks the current thread until the current event receives a signal.
function WaitFor: Cardinal