<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com - Stories tagged with threads</title>
    <description>the latest stories tagged with 'threads' from DotNetKicks.com</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>Stop Polluting the UI Thread - Use a ThreadBarrier</title>
      <description>A ThreadBarrier is a technique for simplifying the interaction between the UI and a worker thread. No longer do UI Controls need to check InvokeRequired and do the posting of events from a worker thread. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.quantumbitdesigns.com%2f2008%2f06%2f10%2fstop-polluting-the-ui-thread-use-a-threadbarrier%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.quantumbitdesigns.com%2f2008%2f06%2f10%2fstop-polluting-the-ui-thread-use-a-threadbarrier%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Stop_Polluting_the_UI_Thread_Use_a_ThreadBarrier</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Stop_Polluting_the_UI_Thread_Use_a_ThreadBarrier</guid>
      <pubDate>Tue, 10 Jun 2008 17:01:10 GMT</pubDate>
    </item>
    <item>
      <title>Empty try blocks</title>
      <description>The article explains why you might see functions that do nothing in the &amp;quot;try&amp;quot; block. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.somecreativity.com%2f2008%2f04%2f10%2fthe-empty-try-block-mystery%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.somecreativity.com%2f2008%2f04%2f10%2fthe-empty-try-block-mystery%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Empty_try_blocks</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Empty_try_blocks</guid>
      <pubDate>Fri, 11 Apr 2008 11:01:02 GMT</pubDate>
    </item>
    <item>
      <title>Anonymous Methods vs Threads</title>
      <description>What happens when you combine anonymous methods and threads - a things you need to be aware or you will encounter a strange behavior that will be hard to explain. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvaultofthoughts.net%2fAnonymousMethodsVsThreads.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvaultofthoughts.net%2fAnonymousMethodsVsThreads.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Anonymous_Methods_vs_Threads</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Anonymous_Methods_vs_Threads</guid>
      <pubDate>Tue, 19 Jun 2007 17:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Anonymous Methods vs Threads</title>
      <description>What happens when you combine anonymous methods and threads - a things you need to be aware or you will encounter a strange behavior that will be hard to explain. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvaultofthoughts.net%2fAnonymousMethodsVsThreads.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvaultofthoughts.net%2fAnonymousMethodsVsThreads.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Anonymous_Methods_vs_Threads</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Anonymous_Methods_vs_Threads</guid>
      <pubDate>Tue, 19 Jun 2007 17:46:01 GMT</pubDate>
    </item>
    <item>
      <title>Working With Asynchronous WebRequests</title>
      <description>Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvaultofthoughts.net%2fBeginGetResponseIAsyncResultAndAsyncWaitHandleIssue.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvaultofthoughts.net%2fBeginGetResponseIAsyncResultAndAsyncWaitHandleIssue.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/clr/Working_With_Asynchronous_WebRequests</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/clr/Working_With_Asynchronous_WebRequests</guid>
      <pubDate>Mon, 18 Jun 2007 04:16:01 GMT</pubDate>
    </item>
    <item>
      <title>Creating a simple, reusable Windows Service (template code) - Part II</title>
      <description>In part I, we examined how we can extend the Service Control methods by adding methods for all states of the Windows service in addition to the two methods provided by the designer. As you may remember, each of those methods called our own private Service Control method. Our private Service Control methods are implemented below:

 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetzone.gr%2fcs%2fblogs%2fsfilip%2farticles%2f5840.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetzone.gr%2fcs%2fblogs%2fsfilip%2farticles%2f5840.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vbnet/Creating_a_simple_reusable_Windows_Service_template_code_Part_II</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vbnet/Creating_a_simple_reusable_Windows_Service_template_code_Part_II</guid>
      <pubDate>Thu, 04 Jan 2007 10:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Creating a simple, reusable Windows Service (template code) - Part I</title>
      <description>In this article, we'll see a way to create a simple Windows Service that can be reusable in that it can be used as the basis for any repeated operation that we would like to transform to a Windows Service.In other words, we can create our own assembly and then have the Windows Service call its entry point repeatedly over a period of time. By extending the code provided, you can even have multiple threads running at the same time. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetzone.gr%2fcs%2fblogs%2fsfilip%2farticles%2f5484.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetzone.gr%2fcs%2fblogs%2fsfilip%2farticles%2f5484.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vbnet/Creating_a_simple_reusable_Windows_Service_template_code_Part_I</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vbnet/Creating_a_simple_reusable_Windows_Service_template_code_Part_I</guid>
      <pubDate>Thu, 04 Jan 2007 12:01:02 GMT</pubDate>
    </item>
  </channel>
</rss>