public interface LocalConfigurationStorage
LocalConfigurationStorage is responsible for applying on each node the configuration changes initiated
through the GlobalConfigurationManager and persist them unless they are
CacheContainerAdmin.AdminFlag.VOLATILE.| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<Void> |
createCache(String name,
String template,
Configuration configuration,
EnumSet<CacheContainerAdmin.AdminFlag> flags)
Creates the cache using the supplied template, configuration and flags.
|
void |
initialize(EmbeddedCacheManager embeddedCacheManager,
ConfigurationManager configurationManager,
BlockingManager blockingManager)
Initialization entry point for the
LocalConfigurationStorage |
Map<String,Configuration> |
loadAll()
Loads all persisted cache configurations
|
CompletableFuture<Void> |
removeCache(String name,
EnumSet<CacheContainerAdmin.AdminFlag> flags)
Removes the specified cache.
|
void |
validateFlags(EnumSet<CacheContainerAdmin.AdminFlag> flags)
Checks whether this
LocalConfigurationStorage supports the supplied flags. |
void initialize(EmbeddedCacheManager embeddedCacheManager, ConfigurationManager configurationManager, BlockingManager blockingManager)
LocalConfigurationStorageembeddedCacheManager - configurationManager - blockingManager - handler to use when a blocking operation is requiredvoid validateFlags(EnumSet<CacheContainerAdmin.AdminFlag> flags)
LocalConfigurationStorage supports the supplied flags.
A CacheConfigurationException will be thrown in case this cannot be done.CompletableFuture<Void> createCache(String name, String template, Configuration configuration, EnumSet<CacheContainerAdmin.AdminFlag> flags)
LocalConfigurationStorage should use it, e.g. when persisting the configuration.name - the name of the cache to createtemplate - the template that should be used to configure the cache. Can be null.configuration - the Configuration to useflags - the desired CacheContainerAdmin.AdminFlagsCompletableFuture<Void> removeCache(String name, EnumSet<CacheContainerAdmin.AdminFlag> flags)
name - the name of the cache to removeflags - the desired CacheContainerAdmin.AdminFlagsMap<String,Configuration> loadAll()
Copyright © 2022 JBoss by Red Hat. All rights reserved.