I start a very long process in thread.
When function is ending (very long process is finish), i leave thne
function and thread.
In this case, that becomes the thread ?
It is automatically destroyed and memory released in the next garbage
collector ?
Thank's
--
--------------------------
Merci
Sylfelin
If it's a manually created thread, then yes the thread will die when
the task is completed. For a thread-pool thread, the thread will live
on for the next task.
Jon