class Mangadex::Storage::Basic

Public Instance Methods

clear(_scope) click to toggle source
# 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) click to toggle source
# File lib/mangadex/storage/basic.rb, line 4
def get(_scope, _key)
  raise NotImplementedError
end
set(_scope, _key, _value) click to toggle source
# File lib/mangadex/storage/basic.rb, line 8
def set(_scope, _key, _value)
  raise NotImplementedError
end