class ForkingExecutor::Server

Public Class Methods

new() click to toggle source
# File actionpack/test/abstract_unit.rb, line 365
def initialize
  @queue = Queue.new
end

Public Instance Methods

<<(o) click to toggle source
# File actionpack/test/abstract_unit.rb, line 373
def <<(o)
  o[2] = DRbObject.new(o[2]) if o
  @queue << o
end
pop() click to toggle source
# File actionpack/test/abstract_unit.rb, line 377
def pop; @queue.pop; end
record(reporter, result) click to toggle source
# File actionpack/test/abstract_unit.rb, line 369
def record(reporter, result)
  reporter.record result
end