Class: Mangadex::Storage::Basic
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#clear(_scope) ⇒ Object
12 13 14 15 |
# File 'lib/mangadex/storage/basic.rb', line 12 def clear(_scope) warn("Don't know how to clear #{self.class} storage strategy! Skipping...") nil end |
#get(_scope, _key) ⇒ Object
4 5 6 |
# File 'lib/mangadex/storage/basic.rb', line 4 def get(_scope, _key) raise NotImplementedError end |
#set(_scope, _key, _value) ⇒ Object
8 9 10 |
# File 'lib/mangadex/storage/basic.rb', line 8 def set(_scope, _key, _value) raise NotImplementedError end |