Hi there,

Ruby allows to set the thread priority using the priority= method:
Thread.new do
  Thread.current.priority = -1
  ... blah blah blah ...
end

This is not available in IronRuby because priority maps to the
System.Threading.Thread priority property which looks for the
ThreadPriority enum. Is it going to change or is this the right behavior
for IronRuby?

Thanks,
Shay.
-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to