Uses of Interface
org.ehcache.spi.service.ServiceCreationConfiguration
-
Packages that use ServiceCreationConfiguration Package Description org.ehcache.config CacheManager configuration,Cache configurationand other configuration classes.org.ehcache.spi.service ServiceSPI related in Ehcache. -
-
Uses of ServiceCreationConfiguration in org.ehcache.config
Methods in org.ehcache.config with type parameters of type ServiceCreationConfiguration Modifier and Type Method Description default <C extends ServiceCreationConfiguration<?,?>>
CFluentConfigurationBuilder. getService(java.lang.Class<C> configurationType)Return the unique service creation configuration of the given type.<C extends ServiceCreationConfiguration<?,?>>
java.util.Collection<C>FluentConfigurationBuilder. getServices(java.lang.Class<C> configurationType)Return the service creation configurations of the given type.<R,C extends ServiceCreationConfiguration<?,R>>
BFluentConfigurationBuilder. updateServices(java.lang.Class<C> clazz, java.util.function.UnaryOperator<R> update)Updates all service creation configurations of the given type.<C extends ServiceCreationConfiguration<?,?>>
BFluentConfigurationBuilder. withoutServices(java.lang.Class<C> clazz, java.util.function.Predicate<? super C> predicate)Removes all service creation configurations of the given type that pass the predicate.Methods in org.ehcache.config that return types with arguments of type ServiceCreationConfiguration Modifier and Type Method Description java.util.Collection<ServiceCreationConfiguration<?,?>>Configuration. getServiceCreationConfigurations()Methods in org.ehcache.config with parameters of type ServiceCreationConfiguration Modifier and Type Method Description BFluentConfigurationBuilder. withService(ServiceCreationConfiguration<?,?> config)Adds a service creation configuration to this configuration.Method parameters in org.ehcache.config with type arguments of type ServiceCreationConfiguration Modifier and Type Method Description default BFluentConfigurationBuilder. withoutServices(java.lang.Class<? extends ServiceCreationConfiguration<?,?>> clazz)Removes all service creation configurations of the given type from this configuration.default BFluentConfigurationBuilder. withService(Builder<? extends ServiceCreationConfiguration<?,?>> builder)Adds a service creation configuration built by the given builder to this configuration. -
Uses of ServiceCreationConfiguration in org.ehcache.spi.service
Methods in org.ehcache.spi.service that return ServiceCreationConfiguration Modifier and Type Method Description default ServiceCreationConfiguration<T,?>ServiceCreationConfiguration. build(R representation)Construct a new configuration from the given detached representation.Methods in org.ehcache.spi.service with parameters of type ServiceCreationConfiguration Modifier and Type Method Description default booleanServiceCreationConfiguration. compatibleWith(ServiceCreationConfiguration<?,?> other)Returns true if this configuration can co-exist withotherin the same manager configuration.
-