class DeepTest::Distributed::ThroughputWorkerClient
Public Class Methods
new(options, test_server)
click to toggle source
# File lib/deep_test/distributed/throughput_worker_client.rb, line 4 def initialize(options, test_server) @options = options @test_server = test_server end
Public Instance Methods
start_all()
click to toggle source
# File lib/deep_test/distributed/throughput_worker_client.rb, line 9 def start_all @worker_server = @test_server.spawn_worker_server(@options) @worker_server.start_all end
stop_all()
click to toggle source
# File lib/deep_test/distributed/throughput_worker_client.rb, line 14 def stop_all @worker_server.stop_all end