Class: ConfigCat::ConfigCache

Inherits:
Object
  • Object
show all
Defined in:
lib/configcat/interfaces.rb

Direct Known Subclasses

InMemoryConfigCache

Instance Method Summary collapse

Instance Method Details

#getObject

Config cache interface



26
27
28
29
30
# File 'lib/configcat/interfaces.rb', line 26

def get()
  #
  #     :returns the config json object from the cache
  #
end

#set(value) ⇒ Object



32
33
34
35
36
# File 'lib/configcat/interfaces.rb', line 32

def set(value)
  #
  #     Sets the config json cache.
  #
end