C++ Client-Side SDK
LaunchDarkly SDK
Public Types | Public Member Functions | List of all members
launchdarkly::client_side::IClient Class Referenceabstract

#include <client.hpp>

Inheritance diagram for launchdarkly::client_side::IClient:
Inheritance graph
[legend]

Public Types

using FlagKey = std::string
 

Public Member Functions

virtual std::future< bool > StartAsync ()=0
 
virtual bool Initialized () const =0
 
virtual std::unordered_map< FlagKey, ValueAllFlags () const =0
 
virtual void Track (std::string event_name, Value data, double metric_value)=0
 
virtual void Track (std::string event_name, Value data)=0
 
virtual void Track (std::string event_name)=0
 
virtual void FlushAsync ()=0
 
virtual std::future< bool > IdentifyAsync (Context context)=0
 
virtual bool BoolVariation (FlagKey const &key, bool default_value)=0
 
virtual EvaluationDetail< bool > BoolVariationDetail (FlagKey const &key, bool default_value)=0
 
virtual std::string StringVariation (FlagKey const &key, std::string default_value)=0
 
virtual EvaluationDetail< std::string > StringVariationDetail (FlagKey const &key, std::string default_value)=0
 
virtual double DoubleVariation (FlagKey const &key, double default_value)=0
 
virtual EvaluationDetail< double > DoubleVariationDetail (FlagKey const &key, double default_value)=0
 
virtual int IntVariation (FlagKey const &key, int default_value)=0
 
virtual EvaluationDetail< int > IntVariationDetail (FlagKey const &key, int default_value)=0
 
virtual Value JsonVariation (FlagKey const &key, Value default_value)=0
 
virtual EvaluationDetail< ValueJsonVariationDetail (FlagKey const &key, Value default_value)=0
 
virtual data_sources::IDataSourceStatusProviderDataSourceStatus ()=0
 
virtual flag_manager::IFlagNotifierFlagNotifier ()=0
 
 IClient (IClient const &item)=delete
 
 IClient (IClient &&item)=delete
 
IClientoperator= (IClient const &)=delete
 
IClientoperator= (IClient &&)=delete
 

Detailed Description

Interface for the standard SDK client methods and properties.

Member Typedef Documentation

◆ FlagKey

Represents the key of a feature flag.

Member Function Documentation

◆ AllFlags()

virtual std::unordered_map<FlagKey, Value> launchdarkly::client_side::IClient::AllFlags ( ) const
pure virtual

Returns a map from feature flag keys to feature flag values for the current context.

This method will not send analytics events back to LaunchDarkly.

Returns
A map from feature flag keys to values for the current context.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ BoolVariation()

virtual bool launchdarkly::client_side::IClient::BoolVariation ( FlagKey const &  key,
bool  default_value 
)
pure virtual

Returns the boolean value of a feature flag for a given flag key.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
The variation for the selected context, or default_value if the flag is disabled in the LaunchDarkly control panel

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ BoolVariationDetail()

virtual EvaluationDetail<bool> launchdarkly::client_side::IClient::BoolVariationDetail ( FlagKey const &  key,
bool  default_value 
)
pure virtual

Returns the boolean value of a feature flag for a given flag key, in an object that also describes the way the value was determined.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
An evaluation detail object.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ DataSourceStatus()

virtual data_sources::IDataSourceStatusProvider& launchdarkly::client_side::IClient::DataSourceStatus ( )
pure virtual

Returns an interface which provides methods for subscribing to data source status.

Returns
A data source status provider.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ DoubleVariation()

virtual double launchdarkly::client_side::IClient::DoubleVariation ( FlagKey const &  key,
double  default_value 
)
pure virtual

Returns the double value of a feature flag for a given flag key.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
The variation for the selected context, or default_value if the flag is disabled in the LaunchDarkly control panel

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ DoubleVariationDetail()

virtual EvaluationDetail<double> launchdarkly::client_side::IClient::DoubleVariationDetail ( FlagKey const &  key,
double  default_value 
)
pure virtual

Returns the double value of a feature flag for a given flag key, in an object that also describes the way the value was determined.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
An evaluation detail object.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ FlagNotifier()

virtual flag_manager::IFlagNotifier& launchdarkly::client_side::IClient::FlagNotifier ( )
pure virtual

Returns an interface which provides methods for subscribing to data flag changes.

Returns
A flag notifier.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ FlushAsync()

virtual void launchdarkly::client_side::IClient::FlushAsync ( )
pure virtual

Tells the client that all pending analytics events (if any) should be delivered as soon as possible.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ IdentifyAsync()

virtual std::future<bool> launchdarkly::client_side::IClient::IdentifyAsync ( Context  context)
pure virtual

Changes the current evaluation context, requests flags for that context from LaunchDarkly if online, and generates an analytics event to tell LaunchDarkly about the context.

Only one IdentifyAsync can be in progress at once; calling it concurrently invokes undefined behavior.

To block until the identify operation is complete, call wait() on the returned future.

The returned future will resolve to true or false based on the logic outlined on Initialized.

Parameters
contextThe new evaluation context.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ Initialized()

virtual bool launchdarkly::client_side::IClient::Initialized ( ) const
pure virtual

Returns a boolean value indicating LaunchDarkly connection and flag state within the client.

When you first start the client, once StartAsync has completed, Initialized should return true if and only if either 1. it connected to LaunchDarkly and successfully retrieved flags, or 2. it started in offline mode so there's no need to connect to LaunchDarkly.

If the client timed out trying to connect to LD, then Initialized returns false (even if we do have cached flags).

If the client connected and got a 401 error, Initialized will return false.

This serves the purpose of letting the app know that there was a problem of some kind.

Returns
True if the client is initialized.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ IntVariation()

virtual int launchdarkly::client_side::IClient::IntVariation ( FlagKey const &  key,
int  default_value 
)
pure virtual

Returns the int value of a feature flag for a given flag key.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
The variation for the selected context, or default_value if the flag is disabled in the LaunchDarkly control panel

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ IntVariationDetail()

virtual EvaluationDetail<int> launchdarkly::client_side::IClient::IntVariationDetail ( FlagKey const &  key,
int  default_value 
)
pure virtual

Returns the int value of a feature flag for a given flag key, in an object that also describes the way the value was determined.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
An evaluation detail object.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ JsonVariation()

virtual Value launchdarkly::client_side::IClient::JsonVariation ( FlagKey const &  key,
Value  default_value 
)
pure virtual

Returns the JSON value of a feature flag for a given flag key.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
The variation for the selected context, or default_value if the flag is disabled in the LaunchDarkly control panel

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ JsonVariationDetail()

virtual EvaluationDetail<Value> launchdarkly::client_side::IClient::JsonVariationDetail ( FlagKey const &  key,
Value  default_value 
)
pure virtual

Returns the JSON value of a feature flag for a given flag key, in an object that also describes the way the value was determined.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
An evaluation detail object.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ StartAsync()

virtual std::future<bool> launchdarkly::client_side::IClient::StartAsync ( )
pure virtual

Connects the client to LaunchDarkly's flag delivery endpoints.

StartAsync must be called to obtain fresh flag data.

The returned future will resolve to true or false based on the logic outlined on Initialized.

Blocking indefinitely on the future (e.g. by calling .get() or .wait()) is highly discouraged. Instead, use a method that takes a timeout like .wait_for() or .wait_until(), or do not wait.

Otherwise, the application may hang indefinitely if the client cannot connect to LaunchDarkly.

While the client is connecting asynchronously, it is safe to call variation methods, which will return application-defined default values.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ StringVariation()

virtual std::string launchdarkly::client_side::IClient::StringVariation ( FlagKey const &  key,
std::string  default_value 
)
pure virtual

Returns the string value of a feature flag for a given flag key.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
The variation for the selected context, or default_value if the flag is disabled in the LaunchDarkly control panel

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ StringVariationDetail()

virtual EvaluationDetail<std::string> launchdarkly::client_side::IClient::StringVariationDetail ( FlagKey const &  key,
std::string  default_value 
)
pure virtual

Returns the string value of a feature flag for a given flag key, in an object that also describes the way the value was determined.

Parameters
keyThe unique feature key for the feature flag.
default_valueThe default value of the flag.
Returns
An evaluation detail object.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ Track() [1/3]

virtual void launchdarkly::client_side::IClient::Track ( std::string  event_name)
pure virtual

Tracks that the current context performed an event for the given event name.

Parameters
event_nameThe name of the event.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ Track() [2/3]

virtual void launchdarkly::client_side::IClient::Track ( std::string  event_name,
Value  data 
)
pure virtual

Tracks that the current context performed an event for the given event name, with additional JSON data.

Parameters
event_nameThe name of the event.
dataA JSON value containing additional data associated with the event.

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.

◆ Track() [3/3]

virtual void launchdarkly::client_side::IClient::Track ( std::string  event_name,
Value  data,
double  metric_value 
)
pure virtual

Tracks that the current context performed an event for the given event name, and associates it with a numeric metric value.

Parameters
event_nameThe name of the event.
dataA JSON value containing additional data associated with the event.
metric_valuethis value is used by the LaunchDarkly experimentation feature in numeric custom metrics, and will also be returned as part of the custom event for Data Export

Implemented in launchdarkly::client_side::ClientImpl, and launchdarkly::client_side::Client.


The documentation for this class was generated from the following file: