Package org.apache.kafka.common.config
Interface ConfigChangeCallback
-
public interface ConfigChangeCallback
A callback passed toConfigProvider
for subscribing to changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onChange(String path, ConfigData data)
Performs an action when configuration data changes.
-
-
-
Method Detail
-
onChange
void onChange(String path, ConfigData data)
Performs an action when configuration data changes.- Parameters:
path
- the path at which the data residesdata
- the configuration data
-
-