Class: Clarion::Counters::Base
- Inherits:
-
Object
- Object
- Clarion::Counters::Base
- Defined in:
- lib/clarion/counters/base.rb
Instance Method Summary collapse
- #get(key) ⇒ Object
-
#initialize(options = {}) ⇒ Base
constructor
A new instance of Base.
- #store(key) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Base
Returns a new instance of Base.
4 5 6 |
# File 'lib/clarion/counters/base.rb', line 4 def initialize(={}) @options = end |
Instance Method Details
#get(key) ⇒ Object
8 9 10 |
# File 'lib/clarion/counters/base.rb', line 8 def get(key) raise NotImplementedError end |
#store(key) ⇒ Object
12 13 14 |
# File 'lib/clarion/counters/base.rb', line 12 def store(key) raise NotImplementedError end |