Class: CheckerJobs::Notifiers::Base
- Inherits:
-
Object
- Object
- CheckerJobs::Notifiers::Base
- Defined in:
- lib/checker_jobs/notifiers/base.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(check, _count, _entries) ⇒ Base
constructor
A new instance of Base.
- #notify ⇒ Object
Constructor Details
#initialize(check, _count, _entries) ⇒ Base
Returns a new instance of Base.
2 3 4 |
# File 'lib/checker_jobs/notifiers/base.rb', line 2 def initialize(check, _count, _entries) @check = check end |
Class Method Details
.default_options ⇒ Object
10 11 12 |
# File 'lib/checker_jobs/notifiers/base.rb', line 10 def self. raise NotImplementedError end |
Instance Method Details
#notify ⇒ Object
6 7 8 |
# File 'lib/checker_jobs/notifiers/base.rb', line 6 def notify raise NotImplementedError end |