Module: LaunchDarkly::Interfaces::DataSystem::SelectorStore

Included in:
LaunchDarkly::Impl::DataStore::Store
Defined in:
lib/ldclient-rb/interfaces/data_system.rb

Overview

SelectorStore represents a component capable of providing Selectors for data retrieval.

This type is not stable, and not subject to any backwards compatibility guarantees or semantic versioning. It is not suitable for production usage.

Do not use it. You have been warned.

Instance Method Summary collapse

Instance Method Details

#selectorSelector

Returns a Selector object that defines the criteria for data retrieval.

Returns:

Raises:

  • (NotImplementedError)


638
639
640
# File 'lib/ldclient-rb/interfaces/data_system.rb', line 638

def selector
  raise NotImplementedError, "#{self.class} must implement #selector"
end