class SplitIoClient::Cache::Filter::FilterAdapter
def add(feature_name, key)
def add(feature_name, key) @filter.add("#{feature_name}#{key}") rescue StandardError => e @config.log_found_exception(__method__.to_s, e) end
def clear
def clear @filter.clear rescue StandardError => e @config.log_found_exception(__method__.to_s, e) end
def contains?(feature_name, key)
def contains?(feature_name, key) @filter.contains?("#{feature_name}#{key}") rescue StandardError => e @config.log_found_exception(__method__.to_s, e) end
def initialize(config, filter)
def initialize(config, filter) @config = config @filter = filter end