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.



32
33
34
35
36
37
38
# File 'lib/dbus/proxy_object_interface.rb', line 32

def initialize(object, name)
  @object = object
  @name = name
  @methods = {}
  @signals = {}
  @properties = {}
end