module Orocos::Async::CORBA
Public Class Methods
get(name,options =Hash.new)
click to toggle source
# File lib/orocos/async/name_service.rb, line 368 def get(name,options =Hash.new) name_service.get(name,options) end
name_service()
click to toggle source
# File lib/orocos/async/name_service.rb, line 364 def name_service @name_service ||= NameService.new(Orocos::CORBA.name_service.ip) end
name_service=(service)
click to toggle source
# File lib/orocos/async/name_service.rb, line 355 def name_service=(service) Orocos::Async.name_service.name_services.each_with_index do |i,val| if val == @delegator_obj Orocos::Async.name_service.name_services[i] = service break end end reachable! service end
proxy(name,options = Hash.new)
click to toggle source
# File lib/orocos/async/name_service.rb, line 372 def proxy(name,options = Hash.new) name_service.proxy(name,options) end