method
invoke_service_command
v1_9_2_180 -
Show latest stable
- Class:
DRb::ExtServManager
invoke_service_command(name, command)private
No documentation available.
# File lib/drb/extservm.rb, line 75
def invoke_service_command(name, command)
raise "invalid command. name: #{name}" unless command
synchronize do
return if @servers.include?(name)
@servers[name] = false
end
uri = @uri || DRb.uri
Process.detach spawn("#{command} #{uri} #{name}")
end