method

new

ruby latest stable - Class: DRb::ExtServ
new(there, name, server=nil)
public

No documentation available.

# 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.regist(name, DRbObject.new(self, @server.uri))
      end
    end