Class: IPinfo::CacheInterface
- Inherits:
-
Object
- Object
- IPinfo::CacheInterface
show all
- Defined in:
- lib/ipinfo/cache/cache_interface.rb
Defined Under Namespace
Classes: InterfaceNotImplemented
Instance Method Summary
collapse
Instance Method Details
#contains?(key) ⇒ Boolean
12
13
14
|
# File 'lib/ipinfo/cache/cache_interface.rb', line 12
def contains?(key)
raise InterfaceNotImplemented
end
|
#get(key) ⇒ Object
4
5
6
|
# File 'lib/ipinfo/cache/cache_interface.rb', line 4
def get(key)
raise InterfaceNotImplemented
end
|
#set(key, value) ⇒ Object
8
9
10
|
# File 'lib/ipinfo/cache/cache_interface.rb', line 8
def set(key, value)
raise InterfaceNotImplemented
end
|