Method: DBus::ProxyObjectInterface#initialize
- Defined in:
- lib/dbus/proxy_object_interface.rb
#initialize(object, name) ⇒ ProxyObjectInterface
Creates a new proxy interface for the given proxy object and the given name.
27 28 29 30 |
# File 'lib/dbus/proxy_object_interface.rb', line 27 def initialize(object, name) @object, @name = object, name @methods, @signals = Hash.new, Hash.new end |