-
- All Implemented Interfaces:
-
com.datadog.android.api.feature.Feature
public interface StorageBackedFeature implements Feature
Interface to be implemented by the feature, which requires storage, to be registered with SdkCore.
-
-
Method Summary
Modifier and Type Method Description abstract RequestFactorygetRequestFactory()Provides an instance of RequestFactory for the given feature. abstract FeatureStorageConfigurationgetStorageConfiguration()Provides storage configuration for the given feature. abstract StringgetName()Name of the feature. -
-
Method Detail
-
getRequestFactory
abstract RequestFactory getRequestFactory()
Provides an instance of RequestFactory for the given feature. Will be called before Feature.onInitialize.
-
getStorageConfiguration
abstract FeatureStorageConfiguration getStorageConfiguration()
Provides storage configuration for the given feature. Will be called before Feature.onInitialize.
-
-
-
-