方法
- #
- A
- I
- N
- P
- R
- S
包含模块
- DRb::DRbUndumped
类公共方法
new() 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 14 def initialize @queue = Queue.new @active_workers = Concurrent::Map.new @in_flight = Concurrent::Map.new end
实例公共方法
<<(o) 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 31 def <<(o) o[2] = DRbObject.new(o[2]) if o @queue << o end
active_workers?() 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 51 def active_workers? @active_workers.size > 0 end
interrupt() 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 55 def interrupt @queue.clear end
pop() 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 36 def pop if test = @queue.pop @in_flight[[test[0].to_s, test[1]]] = test test end end
record(reporter, result) 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 20 def record(reporter, result) raise DRb::DRbConnError if result.is_a?(DRb::DRbUnknown) @in_flight.delete([result.klass, result.name]) reporter.synchronize do reporter.prerecord(PrerecordResultClass.new(result.klass), result.name) reporter.record(result) end end
shutdown() 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 59 def shutdown # Wait for initial queue to drain while @queue.length != 0 sleep 0.1 end @queue.close # Wait until all workers have finished while active_workers? sleep 0.1 end @in_flight.values.each do |(klass, name, reporter)| result = Minitest::Result.from(klass.new(name)) error = RuntimeError.new("result not reported") error.set_backtrace([""]) result.failures << Minitest::UnexpectedError.new(error) reporter.synchronize do reporter.record(result) end end end
start_worker(worker_id) 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 43 def start_worker(worker_id) @active_workers[worker_id] = true end
stop_worker(worker_id) 链接
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/parallelization/server.rb, line 47 def stop_worker(worker_id) @active_workers.delete(worker_id) end