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 in early access. If you want access to this feature please join the EAP. https://launchdarkly.com/docs/sdk/features/data-saving-mode

Instance Method Summary collapse

Instance Method Details

#selectorSelector

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

Returns:

Raises:

  • (NotImplementedError)


596
597
598
# File 'lib/ldclient-rb/interfaces/data_system.rb', line 596

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