module Money::Bank::ECB::Cache

Public Instance Methods

get() click to toggle source

Get what the cache contains.

@return [String]

# File lib/money/bank/ecb/cache.rb, line 16
def get
  raise StandardError, "Implement '.get' in your Cache!"
end
set(value) click to toggle source

Set the cache.

@param [String] value Set the cache to hold the value. @return [String]

# File lib/money/bank/ecb/cache.rb, line 9
def set(value)
  raise StandardError, "Implement '.set(&block)' in your Cache!"
end