class DRb::ExtServ
Attributes
Public Class Methods
Source
# File lib/drb/extserv.rb, line 15 def initialize(there, name, server=nil) super() @server = server || DRb::primary_server @name = name ro = DRbObject.new(nil, there) synchronize do @invoker = ro.register(name, DRbObject.new(self, @server.uri)) end end
Calls superclass method
Public Instance Methods
Source
# File lib/drb/extserv.rb, line 30 def stop_service synchronize do @invoker.unregister(@name) server = @server @server = nil server.stop_service true end end