Class: EventBus::SingletonMixin::ConnectEntry
- Inherits:
-
Object
- Object
- EventBus::SingletonMixin::ConnectEntry
- Defined in:
- lib/ls4/lib/ebus.rb
Instance Attribute Summary collapse
-
#bus ⇒ Object
readonly
Returns the value of attribute bus.
-
#mname ⇒ Object
readonly
Returns the value of attribute mname.
-
#slot ⇒ Object
readonly
Returns the value of attribute slot.
Instance Method Summary collapse
-
#initialize(bus, slot, mname) ⇒ ConnectEntry
constructor
A new instance of ConnectEntry.
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
#bus ⇒ Object (readonly)
Returns the value of attribute bus.
280 281 282 |
# File 'lib/ls4/lib/ebus.rb', line 280 def bus @bus end |
#mname ⇒ Object (readonly)
Returns the value of attribute mname.
282 283 284 |
# File 'lib/ls4/lib/ebus.rb', line 282 def mname @mname end |
#slot ⇒ Object (readonly)
Returns the value of attribute slot.
281 282 283 |
# File 'lib/ls4/lib/ebus.rb', line 281 def slot @slot end |