Package org.apache.kafka.common
Interface Reconfigurable
- All Superinterfaces:
- Configurable
- All Known Subinterfaces:
- MetricsReporter
- All Known Implementing Classes:
- JmxReporter
Interface for reconfigurable classes that support dynamic configuration.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the names of configs that may be reconfigured.voidreconfigure(Map<String, ?> configs) Reconfigures this instance with the given key-value pairs.voidvalidateReconfiguration(Map<String, ?> configs) Validates the provided configuration.Methods inherited from interface org.apache.kafka.common.Configurableconfigure
- 
Method Details- 
reconfigurableConfigsReturns the names of configs that may be reconfigured.
- 
validateReconfigurationValidates the provided configuration. The provided map contains all configs including any reconfigurable configs that may be different from the initial configuration. Reconfiguration will be not performed if this method throws any exception.- Throws:
- ConfigException- if the provided configs are not valid. The exception message from ConfigException will be returned to the client in the AlterConfigs response.
 
- 
reconfigureReconfigures this instance with the given key-value pairs. The provided map contains all configs including any reconfigurable configs that may have changed since the object was initially configured usingConfigurable.configure(Map). This method will only be invoked if the configs have passed validation usingvalidateReconfiguration(Map).
 
-