Tagged Questions
10
votes
5answers
289 views
How to implement thread which periodically checks something using minimal resources?
I would like to have a thread running in background which will check connection to some server with given time interval. For example for every 5 seconds.
I don't know if there is a good "desing ...
8
votes
5answers
4k views
Delphi TThread.CurrentThread and EAccessViolation - Is This a Bug or My Incompetence..?
In Delphi 2009 I'm finding that any time I use TThread.CurrentThread in an application, I'll get an error message like the following when the application closes:
Exception EAccessViolation in module ...
4
votes
2answers
164 views
Thread Error: The Handle is Invalid (6) when trying to Free a suspended thread
In a given example I am receiving an exception when calling AThread.Free.
program Project44;
{$APPTYPE CONSOLE}
uses
SysUtils, Classes, Windows;
type
TMyException = class(Exception);
var
...