Subject: Re: Is there a standard pattern for threaded access to a file?
From: 7stud -- <bbxx789_05ss yahoo.com>
Date: Sat, 13 Oct 2007 11:35:16 +0900
References: 273887273891
In-reply-to: 273891
ara.t.howard wrote:
>
> threads.map{|t| t.join}
>
>
Skip that inappropriate suggestion and use the following instead:
threads.each {|t| t.join}
--
Posted via http://www.ruby-forum.com/.