class Nameservice::CORBA

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/orocos/nameservice_corba.rb, line 3
def initialize(options)
    super
    ::Orocos::CORBA::name_service=options[:host]
end
options() click to toggle source
# File lib/orocos/nameservice_corba.rb, line 12
def self.options
    @@options[:host] = "Hostname where the corba nameservice is running"
    @@options
end

Public Instance Methods

resolve(name) click to toggle source
# File lib/orocos/nameservice_corba.rb, line 8
def resolve(name)
    Orocos::CORBA.get(:do_get, name)
end