Class: RMB::Submitter
- Inherits:
-
Object
- Object
- RMB::Submitter
- Defined in:
- lib/submitter.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.
-
#send(message) ⇒ Object
connectThis 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.
13 14 |
# File 'lib/submitter.rb', line 13 def connect end |
#properties=(hash) ⇒ Object
properties=(hash) This method establishes the logger for the subclass.
7 8 9 |
# File 'lib/submitter.rb', line 7 def properties=(hash) @logger = hash[:logger] end |
#send(message) ⇒ Object
connect This is an abstract method, intended to be implemented by a subclass.
18 19 |
# File 'lib/submitter.rb', line 18 def send() end |