Class: EventBus::SingletonMixin::ConnectEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/ls4/lib/ebus.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bus, slot, mname) ⇒ ConnectEntry

Returns a new instance of ConnectEntry.



275
276
277
278
279
# File 'lib/ls4/lib/ebus.rb', line 275

def initialize(bus, slot, mname)
	@bus = bus
	@slot = slot
	@mname = mname
end

Instance Attribute Details

#busObject (readonly)

Returns the value of attribute bus.



280
281
282
# File 'lib/ls4/lib/ebus.rb', line 280

def bus
  @bus
end

#mnameObject (readonly)

Returns the value of attribute mname.



282
283
284
# File 'lib/ls4/lib/ebus.rb', line 282

def mname
  @mname
end

#slotObject (readonly)

Returns the value of attribute slot.



281
282
283
# File 'lib/ls4/lib/ebus.rb', line 281

def slot
  @slot
end