<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 27, 2014 at 1:55 PM, Ervin Hegedüs <span dir="ltr"><<a href="mailto:airween@gmail.com" target="_blank">airween@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">what's the correct way to terminate a thread by itself?</blockquote></div><br>If this is something you need to do as a regular course of business, I'd share a Queue between the main thread and the target thread. When you want it to exit, shoot it a command to do so over the queue. If it's a worker thread of some sort, set it as a daemon thread. When your main thread exits and there are no other non-daemon threads alive, the program will exit.</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">Skip</div><div class="gmail_extra"><br></div></div>