Class: CachedCounter::CacheStore::Base
- Inherits:
-
Object
- Object
- CachedCounter::CacheStore::Base
show all
- Defined in:
- lib/cached_counter.rb
Defined Under Namespace
Classes: NotImplementedError
Instance Method Summary
collapse
Instance Method Details
#add(key, value) ⇒ Object
264
|
# File 'lib/cached_counter.rb', line 264
def add(key, value); fail_with_not_implemented_error 'add' end
|
#decr(key) ⇒ Object
263
|
# File 'lib/cached_counter.rb', line 263
def decr(key); fail_with_not_implemented_error 'decr' end
|
#delete(key) ⇒ Object
265
|
# File 'lib/cached_counter.rb', line 265
def delete(key); fail_with_not_implemented_error 'delete' end
|
#error_class ⇒ Object
266
|
# File 'lib/cached_counter.rb', line 266
def error_class; fail_with_not_implemented_error 'incr' end
|
#incr(key) ⇒ Object
262
|
# File 'lib/cached_counter.rb', line 262
def incr(key); fail_with_not_implemented_error 'incr' end
|