我正在使用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