<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/thread</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 21 May 2013 20:49:40 GMT</pubDate>
<item>
<title>(Python) Python simple thread manager - ytech</title>
<link>http://snipplr.com/view/68634/python-simple-thread-manager/</link>
<description><![CDATA[ <p>A python static class that handles simple thread management.</p> ]]></description>
<pubDate>Sun, 18 Nov 2012 08:55:20 GMT</pubDate>
<guid>http://snipplr.com/view/68634/python-simple-thread-manager/</guid>
</item>
<item>
<title>(Python) Run Scrapy crawler in a thread - scrapy</title>
<link>http://snipplr.com/view/67015/run-scrapy-crawler-in-a-thread/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 01 Sep 2012 07:15:35 GMT</pubDate>
<guid>http://snipplr.com/view/67015/run-scrapy-crawler-in-a-thread/</guid>
</item>
<item>
<title>(Python) Python - Thread - Basics - denakitan</title>
<link>http://snipplr.com/view/59466/python--thread--basics/</link>
<description><![CDATA[ <p>Basic thread example showing how to create a class inheriting from threading.Thread class. For more information, take a look at the following links: http://docs.python.org/library/thread.html http://docs.python.org/library/threading.html http://www.ibm.com/developerworks/aix/library/au-threadingpython/ http://effbot.org/zone/thread-synchronization.htm</p> ]]></description>
<pubDate>Thu, 06 Oct 2011 06:06:26 GMT</pubDate>
<guid>http://snipplr.com/view/59466/python--thread--basics/</guid>
</item>
<item>
<title>(Java) Simple Java Multithreading Example - jerryvig</title>
<link>http://snipplr.com/view/58638/simple-java-multithreading-example/</link>
<description><![CDATA[ <p>This is a simple Java multithreading example that uses ActualThread as the class in which the thread code is contained. ActualThread must implement runnable.</p> ]]></description>
<pubDate>Tue, 13 Sep 2011 18:07:07 GMT</pubDate>
<guid>http://snipplr.com/view/58638/simple-java-multithreading-example/</guid>
</item>
<item>
<title>(C#) S002 Asynchronous WebPart Processing - realB12</title>
<link>http://snipplr.com/view/50586/s002-asynchronous-webpart-processing/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 12 Mar 2011 20:34:58 GMT</pubDate>
<guid>http://snipplr.com/view/50586/s002-asynchronous-webpart-processing/</guid>
</item>
<item>
<title>(VB.NET) Run just one instance application - indra</title>
<link>http://snipplr.com/view/46374/run-just-one-instance-application/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 01 Jan 2011 17:24:33 GMT</pubDate>
<guid>http://snipplr.com/view/46374/run-just-one-instance-application/</guid>
</item>
<item>
<title>(C#) UI Thread Delegate - jx_boi</title>
<link>http://snipplr.com/view/39703/ui-thread-delegate/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 30 Aug 2010 16:39:48 GMT</pubDate>
<guid>http://snipplr.com/view/39703/ui-thread-delegate/</guid>
</item>
<item>
<title>(C#) Asynchronous ASP.Net Pages, AJAX Helper, WebRequest Passthrough - bryanlyman</title>
<link>http://snipplr.com/view/28142/asynchronous-aspnet-pages-ajax-helper-webrequest-passthrough/</link>
<description><![CDATA[ <p>.net 3.0+, Ajax calls allow for true asynchronous communication through a browser. You may not notice it until you have a server call that takes awhile, but just because AJAX is allowing it, that doesn't mean the server is acting in a truly asynchronous manner. By default aspx pages will asynchronously allow multiple calls to the same session, however, a thread-lock is placed on each subsequent call so that each incoming request must wait for the previous to finish before the response stream can be accessed. This is a nice protection measure to keep a page programmer from ripping their hair out because of multi-threading data access issues and dead-lock scenarios; but it is inversely annoying to one trying to allow asynchronicity. The solution to allow true multi-threaded asynchronous behavior isn't an easy one, but the following code is a step in the right direction. The first thing you should know is that to make a page act asynchronously is to set the "Async" attribute in the page directive of the aspx page being called </p> ]]></description>
<pubDate>Wed, 10 Feb 2010 16:21:15 GMT</pubDate>
<guid>http://snipplr.com/view/28142/asynchronous-aspnet-pages-ajax-helper-webrequest-passthrough/</guid>
</item>
<item>
<title>(Python) thread timer - manatlan</title>
<link>http://snipplr.com/view/19449/thread-timer/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 09 Sep 2009 17:17:27 GMT</pubDate>
<guid>http://snipplr.com/view/19449/thread-timer/</guid>
</item>
<item>
<title>(Python) multiprocess thread - manatlan</title>
<link>http://snipplr.com/view/19448/multiprocess-thread/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 09 Sep 2009 17:16:56 GMT</pubDate>
<guid>http://snipplr.com/view/19448/multiprocess-thread/</guid>
</item>
<item>
<title>(C++) ASSERT_GUI_THREAD - see if current thread is GUI thread in MFC C++ - jimfred</title>
<link>http://snipplr.com/view/9736/assertguithread--see-if-current-thread-is-gui-thread-in-mfc-c/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 14 Nov 2008 11:01:22 GMT</pubDate>
<guid>http://snipplr.com/view/9736/assertguithread--see-if-current-thread-is-gui-thread-in-mfc-c/</guid>
</item>
<item>
<title>(C#) Manipulate GUI from another Thread - qrist0ph</title>
<link>http://snipplr.com/view/9223/manipulate-gui-from-another-thread/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 24 Oct 2008 02:44:12 GMT</pubDate>
<guid>http://snipplr.com/view/9223/manipulate-gui-from-another-thread/</guid>
</item>
<item>
<title>(Python) PyS60 - Thread - whitetiger</title>
<link>http://snipplr.com/view/1636/pys60--thread/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 09 Nov 2006 23:55:44 GMT</pubDate>
<guid>http://snipplr.com/view/1636/pys60--thread/</guid>
</item>
</channel>
</rss>