See: Description
| Class | Description |
|---|---|
| EventProcessorBuilder |
Contains methods for configuring delivery of analytics events.
|
| FileData |
Integration between the LaunchDarkly SDK and file data.
|
| FileDataSourceBuilder |
To use the file data source, obtain a new instance of this class with
FileData.dataSource();
call the builder method FileDataSourceBuilder.filePaths(String...) to specify file path(s), and/or
FileDataSourceBuilder.classpathResources(String...) to specify classpath data resources; then pass the resulting
object to LDConfig.Builder.dataSource(DataSourceFactory). |
| HttpConfigurationBuilder |
Contains methods for configuring the SDK's networking behavior.
|
| LoggingConfigurationBuilder |
Contains methods for configuring the SDK's logging behavior.
|
| PersistentDataStoreBuilder |
A configurable factory for a persistent data store.
|
| PollingDataSourceBuilder |
Contains methods for configuring the polling data source.
|
| StreamingDataSourceBuilder |
Contains methods for configuring the streaming data source.
|
| Enum | Description |
|---|---|
| PersistentDataStoreBuilder.StaleValuesPolicy |
Possible values for
PersistentDataStoreBuilder.staleValuesPolicy(StaleValuesPolicy). |
In the current main LaunchDarkly Java SDK library, this package contains the configuration builders
for the standard SDK components such as StreamingDataSourceBuilder,
the PersistentDataStoreBuilder builder for use with
database integrations (the specific database integrations themselves are provided by add-on libraries),
and FileData (for reading flags from a file in testing).