<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Basic threading in JavaScript; JavaScript Worker Threads</title>
	<atom:link href="http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 07:31:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: ben</title>
		<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/comment-page-1#comment-3282</link>
		<dc:creator>ben</dc:creator>
		<pubDate>Sun, 23 Oct 2011 04:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=657#comment-3282</guid>
		<description>This is not threading.  Javascript is single threaded (unless you use a worker). All you are doing is a very small piece of work on a timer.  You will block execution doing this, you just don&#039;t notice it because it is not doing anything intensive.

BTW if you want to pass parameters then something like:
setTimeout(function(){callback(parameter)}, 1);</description>
		<content:encoded><![CDATA[<p>This is not threading.  Javascript is single threaded (unless you use a worker). All you are doing is a very small piece of work on a timer.  You will block execution doing this, you just don&#8217;t notice it because it is not doing anything intensive.</p>
<p>BTW if you want to pass parameters then something like:<br />
setTimeout(function(){callback(parameter)}, 1);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mhmt</title>
		<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/comment-page-1#comment-1500</link>
		<dc:creator>Mhmt</dc:creator>
		<pubDate>Fri, 17 Dec 2010 09:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=657#comment-1500</guid>
		<description>hi

i&#039;d like pass arguments to the thread function or callback. do you have any idea?

br</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>i&#8217;d like pass arguments to the thread function or callback. do you have any idea?</p>
<p>br</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred</title>
		<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/comment-page-1#comment-1423</link>
		<dc:creator>Fred</dc:creator>
		<pubDate>Sun, 14 Nov 2010 17:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=657#comment-1423</guid>
		<description>Thanks Hamid. Using the setTimeout pattern, I have created a &quot;Threaded&quot; non blocking object with start/stop methods...

https://gist.github.com/676352</description>
		<content:encoded><![CDATA[<p>Thanks Hamid. Using the setTimeout pattern, I have created a &#8220;Threaded&#8221; non blocking object with start/stop methods&#8230;</p>
<p><a href="https://gist.github.com/676352" rel="nofollow">https://gist.github.com/676352</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RajaMohamed</title>
		<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/comment-page-1#comment-1162</link>
		<dc:creator>RajaMohamed</dc:creator>
		<pubDate>Thu, 24 Jun 2010 04:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=657#comment-1162</guid>
		<description>very much thanks.... it helped me lot</description>
		<content:encoded><![CDATA[<p>very much thanks&#8230;. it helped me lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yussuf Shaikh Ibrahim</title>
		<link>http://codingrecipes.com/basic-threading-in-javascript-multiple-threads-of-execution-in-javascript/comment-page-1#comment-340</link>
		<dc:creator>Yussuf Shaikh Ibrahim</dc:creator>
		<pubDate>Thu, 24 Dec 2009 06:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=657#comment-340</guid>
		<description>THANK YOU..m proud of u...!!! :)
ya it helped me</description>
		<content:encoded><![CDATA[<p>THANK YOU..m proud of u&#8230;!!! <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
ya it helped me</p>
]]></content:encoded>
	</item>
</channel>
</rss>

