[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Don't wait for Exception in threads

Emil Sandin

5/4/2008 6:48:00 PM

I have two threads running in parallell, like this:

####################

t1=Thread.new{
50.times{
p "thread one"
sleep 0.1
}
}

t2=Thread.new{
p "thread two"
raise "error in thread two"
}

t1.join
t2.join

#################
The output is:
"thread one"
"thread two"
"thread one"
... 48 times more "thread one"
"thread one"
testscript.rb:15: error in thread two (RuntimeError)
from testscript.rb:19:in `join'
from testscript.rb:19

The program waits for the first thread to complete before telling me
that the second one raised an exception.
I don't want to wait until the first thread finishes to see the
exception, I want to see it right away.
How can I do that?

Regards
Emil
--
Posted via http://www.ruby-....

3 Answers

James Gray

5/4/2008 7:03:00 PM

0

On May 4, 2008, at 1:48 PM, Emil Sandin wrote:

> I have two threads running in parallell, like this:
>
> ####################
>
> t1=Thread.new{
> 50.times{
> p "thread one"
> sleep 0.1
> }
> }
>
> t2=Thread.new{
> p "thread two"
> raise "error in thread two"
> }
>
> t1.join
> t2.join
>
> #################
> The output is:
> "thread one"
> "thread two"
> "thread one"
> ... 48 times more "thread one"
> "thread one"
> testscript.rb:15: error in thread two (RuntimeError)
> from testscript.rb:19:in `join'
> from testscript.rb:19
>
> The program waits for the first thread to complete before telling me
> that the second one raised an exception.
> I don't want to wait until the first thread finishes to see the
> exception, I want to see it right away.
> How can I do that?

Add this line early in your program:

Thread.abort_on_exception = true

Hope that helps.

James Edward Gray II

akl

5/4/2008 7:04:00 PM

0

Hi Emil,

Emil Sandin schrieb:
> I have two threads running in parallell, like this:
>
> ####################
>
> t1=Thread.new{
> 50.times{
> p "thread one"
> sleep 0.1
> }
> }
>
> t2=Thread.new{
> p "thread two"
> raise "error in thread two"
> }
>
> t1.join
> t2.join
>
> #################
> The output is:
> "thread one"
> "thread two"
> "thread one"
> ... 48 times more "thread one"
> "thread one"
> testscript.rb:15: error in thread two (RuntimeError)
> from testscript.rb:19:in `join'
> from testscript.rb:19
>
> The program waits for the first thread to complete before telling me
> that the second one raised an exception.
> I don't want to wait until the first thread finishes to see the
> exception, I want to see it right away.
> How can I do that?

You can do something like:

Thread.abort_on_exception = true
t = []
t << Thread.new {
50.times{
p "thread one"
sleep 0.1
}
}
t << Thread.new {
p "thread two"
raise "error in thread two"
}
t.each {|t| t.join }

I dont have tested the example, but this way you should see the Exception in the
Moment it occurs

Andi

Emil Sandin

5/4/2008 7:08:00 PM

0

James Gray wrote:
> On May 4, 2008, at 1:48 PM, Emil Sandin wrote:
>
>>
>> "thread one"
>> I don't want to wait until the first thread finishes to see the
>> exception, I want to see it right away.
>> How can I do that?
>
> Add this line early in your program:
>
> Thread.abort_on_exception = true
>
> Hope that helps.
>
> James Edward Gray II

Thank you, that's exactly what I am looking for.

--
Posted via http://www.ruby-....