Internet Direct (Indy) Version 9.0.1 Beta
TIdThread.Create
Create is the constructor for the TIdThread instance.

constructor Create(ACreateSuspended: Boolean); virtual;
Parameters
ACreateSuspended: Boolean = True
Create thread in a suspended state.

Description
Create relies on the inherited Create constructor to initialize the object instance. In Create, Stopped is set to the value in the ACreateSuspended parameter. If ACreateSuspended is True, you should call the Start method in order to start thread execution. If ACreateSuspended is False, the thread automatically starts its execution.

Create insures that GNotifyThread contains a valid TIdNotifyThread instance prior to extiing from the method.