Class: Charyf::Utils::StorageProvider::Base

Inherits:
Object
  • Object
show all
Includes:
Strategy::BaseClass
Defined in:
lib/charyf/utils/storage/provider.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Strategy::BaseClass

included

Class Method Details

.get_for(klass) ⇒ Object



14
15
16
# File 'lib/charyf/utils/storage/provider.rb', line 14

def self.get_for(klass)
  raise Charyf::Utils::NotImplemented.new
end

Instance Method Details

#get(key) ⇒ Object



18
19
20
# File 'lib/charyf/utils/storage/provider.rb', line 18

def get(key)
  raise Charyf::Utils::NotImplemented.new
end

#remove(key) ⇒ Object



26
27
28
# File 'lib/charyf/utils/storage/provider.rb', line 26

def remove(key)
  raise Charyf::Utils::NotImplemented.new
end

#store(key, value) ⇒ Object



22
23
24
# File 'lib/charyf/utils/storage/provider.rb', line 22

def store(key, value)
  raise Charyf::Utils::NotImplemented.new
end