Interface ComponentConfigurer<T>
-
- Type Parameters:
T
- the type of SDK component or configuration object being constructed
- All Known Implementing Classes:
BigSegmentsConfigurationBuilder
,EventProcessorBuilder
,FileDataSourceBuilder
,HttpConfigurationBuilder
,LoggingConfigurationBuilder
,PersistentDataStoreBuilder
,PollingDataSourceBuilder
,StreamingDataSourceBuilder
,TestData
public interface ComponentConfigurer<T>
The common interface for SDK component factories and configuration builders. Applications should not need to implement this interface.- Since:
- 6.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
build(ClientContext clientContext)
Called internally by the SDK to create an implementation instance.
-
-
-
Method Detail
-
build
T build(ClientContext clientContext)
Called internally by the SDK to create an implementation instance. Applications should not need to call this method.- Parameters:
clientContext
- provides configuration properties and other components from the current SDK client instance- Returns:
- a instance of the component type
-
-