Interface ConfigurationNotifier
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
EventAdminConfigurationNotifier
public interface ConfigurationNotifier extends AutoCloseable
Interface for backends that want to inform about configuration changes (usually after Configuration Admin update which happens over multiple, hard to synchronize threads).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigurationDone()Signals successful completion of configuration procedurevoidconfigurationError(Throwable t)Signals problems related to configuration procedure-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
configurationDone
void configurationDone()
Signals successful completion of configuration procedure
-
configurationError
void configurationError(Throwable t)
Signals problems related to configuration procedure- Parameters:
t-
-
-