Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8571851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:52:24+00:00 2026-06-11T18:52:24+00:00

In Delphi I have a threaded client that listens for response in a thread.

  • 0

In Delphi I have a threaded client that listens for response in a thread.
Thread is declared like:

TMyThread = class(TThread)
  private
    FClient: TIdTCPClient;
    FStringResponse: string;
  protected
    procedure Execute; override;
    procedure DoSynch;
  public
    constructor Create(AClient: TIdTCPClient);
  end;

I connect using the:

  if not IdTCPClient1.Connected then
  begin
    // // Set the Host
    IdTCPClient1.Host := Edit1.Text;
    // // Set the port
    IdTCPClient1.Port := 65535;
    // // Connect
    IdTCPClient1.Connect;
    try
      MyThread := TMyThread.Create(IdTCPClient1);
    except
      IdTCPClient1.Disconnect;
      raise;
    end;
  end;

I try to disconnect using:

if MyThread <> nil then
  begin
    MyThread.Terminate;
    // MyThread.WaitFor;
    MyThread.Free;
    MyThread := nil;
    IdTCPClient1.Disconnect;
end;

But this disconnect code throws an exception. What’s the proper way to do terminate this thread and to disconnect the client?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:52:25+00:00Added an answer on June 11, 2026 at 6:52 pm

    Try reversing the order of your shutdown operations – disconnect the client before freeing the thread, rather than the opposite. That way, any blocking socket operation inside the thread is aborted immeidately, allowing the thread to react to the termination:

    if MyThread <> nil then
      MyThread.Terminate; 
    try
      IdTCPClient1.Disconnect; 
    finally
      if MyThread <> nil then
      begin
        MyThread.WaitFor; 
        MyThread.Free; 
        MyThread := nil; 
      end;
    end; 
    

    If you are still getting an exception from Disconnect(), then make sure the thread is not disconnecting the client, only reading/writing from it, and wrap the Disconnect() in its own try/except block if needed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a multi-threaded Delphi 6 Pro application that I am currently working on
I have Delphi 2007 code that looks like this: procedure WriteString(Stream: TFileStream; var SourceBuffer:
Is Delphi have any ability to write script of IDE actions? I would like
does Delphi 2010 have C# Style XML comments that show up when hovering over
I have several Delphi programs that maintain connections to a database (some Oracle, some
I have a Delphi 6 application that uses the Indy 9 components to maintain
I have a Delphi XE2 project having components like Label1 , BitBtn1 and Image1
I have a Delphi application that has a document browser as the main form.
In Delphi I have a structure like this: TCustomerInfo = Packed Record CustomerNo: Integer;
I have a Delphi 6 application that is heavily multithreaded. I have a component

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.