Class: RMB::Subscriber
- Inherits:
-
Object
- Object
- RMB::Subscriber
- Defined in:
- lib/subscriber.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#connect ⇒ Object
connectThis is an abstract method, intended to be implemented by a subclass. -
#properties=(hash) ⇒ Object
properties=(hash) This method establishes the logger for the subclass.
-
#receive ⇒ Object
receiveThis is an abstract method, intended to be implemented by a subclass.
Instance Method Details
#connect ⇒ Object
connect This is an abstract method, intended to be implemented by a subclass.
7 8 |
# File 'lib/subscriber.rb', line 7 def connect end |
#properties=(hash) ⇒ Object
properties=(hash) This method establishes the logger for the subclass.
17 18 19 |
# File 'lib/subscriber.rb', line 17 def properties=(hash) @logger = hash[:logger] end |
#receive ⇒ Object
receive This is an abstract method, intended to be implemented by a subclass.
12 13 |
# File 'lib/subscriber.rb', line 12 def receive end |