Class: Dontbugme::Subscribers::Base
- Inherits:
-
Object
- Object
- Dontbugme::Subscribers::Base
show all
- Defined in:
- lib/dontbugme/subscribers/base.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.call(*args) ⇒ Object
10
11
12
|
# File 'lib/dontbugme/subscribers/base.rb', line 10
def self.call(*args)
new.call(*args)
end
|
.subscribe ⇒ Object
6
7
8
|
# File 'lib/dontbugme/subscribers/base.rb', line 6
def self.subscribe
raise NotImplementedError
end
|
Instance Method Details
#call(_name, _start, _finish, _id, _payload) ⇒ Object
14
15
16
|
# File 'lib/dontbugme/subscribers/base.rb', line 14
def call(_name, _start, _finish, _id, _payload)
raise NotImplementedError
end
|