Interface ConfigurationNamedListListener<VIEWT>
- Type Parameters:
VIEWT- VIEW type configuration.
- All Superinterfaces:
ConfigurationListener<VIEWT>
Configuration property change listener for named list configurations.
-
Method Summary
Modifier and TypeMethodDescriptiondefault CompletableFuture<?>Called when new named list element is created.default CompletableFuture<?>Called when named list element is deleted.default CompletableFuture<?>Called when a named list element is renamed.default CompletableFuture<?>Called on property value update.
-
Method Details
-
onCreate
Called when new named list element is created.- Parameters:
ctx- Notification context.- Returns:
- Future that signifies the end of the listener execution.
-
onRename
Called when a named list element is renamed. Semantically equivalent toonUpdate(ConfigurationNotificationEvent)with the difference that the content of the element might have not been changed. No separateonUpdate(ConfigurationNotificationEvent)call is performed whenonRename(ConfigurationNotificationEvent)is already invoked.- Parameters:
ctx- Notification context.- Returns:
- Future that signifies the end of the listener execution.
-
onDelete
Called when named list element is deleted.- Parameters:
ctx- Notification context.- Returns:
- Future that signifies the end of the listener execution.
-
onUpdate
Called on property value update.- Specified by:
onUpdatein interfaceConfigurationListener<VIEWT>- Parameters:
ctx- Notification context.- Returns:
- Future that signifies the end of the listener execution.
-