[This is preliminary documentation and is subject to change.]
Initializes this instance.
| C# | Visual Basic | Visual C++ |
protected void Initialize( ThreadManager threadManager )
Protected Sub Initialize ( _ threadManager As ThreadManager _ )
protected: void Initialize( ThreadManager^ threadManager )
- threadManager (ThreadManager)
- The ThreadManager that manages this object.
Call one of the Initialize methods directly after creating a Thread instance.
Code that normally would be present in the constructor.
This code is however put in a separate method to be able to have only
one constructor in DicomThread. This way, it is easier to derive from a
DicomThread class.
Use this method if this threads should not have a parent thread.