Class: Bunny::RecordedNamedEntity Abstract
- Inherits:
- 
      RecordedEntity
      
        - Object
- RecordedEntity
- Bunny::RecordedNamedEntity
 
- Defined in:
- lib/bunny/topology_registry.rb
Overview
  This class is abstract.
  
  Represents a named topology entity
Direct Known Subclasses
Instance Attribute Summary collapse
- #name ⇒ String readonly
Attributes inherited from RecordedEntity
Instance Method Summary collapse
- 
  
    
      #initialize(ch, name)  ⇒ RecordedNamedEntity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RecordedNamedEntity. 
Constructor Details
#initialize(ch, name) ⇒ RecordedNamedEntity
Returns a new instance of RecordedNamedEntity.
| 459 460 461 462 463 | # File 'lib/bunny/topology_registry.rb', line 459 def initialize(ch, name) @name = name super(ch) end | 
Instance Attribute Details
#name ⇒ String (readonly)
| 455 456 457 | # File 'lib/bunny/topology_registry.rb', line 455 def name @name end |