Package org.apache.kafka.common.config
Class ConfigData
java.lang.Object
org.apache.kafka.common.config.ConfigData
Configuration data from a 
ConfigProvider.- 
Constructor SummaryConstructorsConstructorDescriptionConfigData(Map<String, String> data) Creates a new ConfigData with the given data.ConfigData(Map<String, String> data, Long ttl) Creates a new ConfigData with the given data and TTL (in milliseconds).
- 
Method Summary
- 
Constructor Details- 
ConfigDataCreates a new ConfigData with the given data and TTL (in milliseconds).- Parameters:
- data- a Map of key-value pairs
- ttl- the time-to-live of the data in milliseconds, or null if there is no TTL
 
- 
ConfigDataCreates a new ConfigData with the given data.- Parameters:
- data- a Map of key-value pairs
 
 
- 
- 
Method Details- 
dataReturns the data.- Returns:
- data a Map of key-value pairs
 
- 
ttlReturns the TTL (in milliseconds).- Returns:
- ttl the time-to-live (in milliseconds) of the data, or null if there is no TTL
 
 
-