JRuby中的线程同步

时间:2013-10-09 12:40:37

标签: ruby multithreading jruby

我正在使用JRuby并使用parallel_test gem并行运行我的测试用例。

在其中一个测试中,我需要同步几行代码。那么我如何在JRuby中同步这些代码。

loop do
  begin
    mutex.synchronized do 
      read = out.readpartial(1000000)
      result << read
      unless silence
        $stdout.print read
        $stdout.flush
      end
    end  
  end
end rescue EOFError

0 个答案:

没有答案