I have multithreaded application as I ask here. I want to terminate the thread, and start a new one when following method is called.
procedure TFRABData.RefreshDataset;
var
GridUpdater: TGridUpdater;
begin
if Assigned(updaterThread) and (updaterThread <> nil) then
begin
updaterThread.Terminate;
end;
GridUpdater := TGridUpdater.Create(True);
GridUpdater.OwnerForm := Self;
updaterThread := GridUpdater;
GridUpdater.FreeOnTerminate := False;
GridUpdater.Start;
CodeSite.Send('RefreshDataset executed');
end
but, when FreeOnTerminate set to True, I get Access Violation, but when FreeOnTerminate set to False, I get memory leak. How to free the thread?

RefreshDatasetmethod is called, you want to terminate the currently running thread - interrupt its currently performed operation and let's say (re)start it ? If so, then I would keep one, still running (just pending) thread. – TLama Sep 25 '12 at 6:30RefreshDatasetis called, it means something changed, and it need to re-run the thread from beginning even when current worker thread is not finish yet. – Niyoko Yuliawan Sep 25 '12 at 6:32