Interface ComponentConfigurer<T>
- Type Parameters:
T
- the type of SDK component or configuration object being constructed
- All Known Implementing Classes:
EventProcessorBuilder
,HttpConfigurationBuilder
,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:
- 3.3.0
-
Method Summary
Modifier and TypeMethodDescriptionbuild
(ClientContext clientContext) Called internally by the SDK to create an implementation instance.
-
Method Details
-
build
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
-