Package org.springframework.data.gemfire
Interface AbstractBasicCacheFactoryBean.CacheFactoryInitializer<T>
- All Superinterfaces:
Function<T,
T>
- Enclosing class:
- AbstractBasicCacheFactoryBean
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface AbstractBasicCacheFactoryBean.CacheFactoryInitializer<T>
extends Function<T,T>
Callback interface for initializing a
CacheFactory
or a ClientCacheFactory
instance,
which is used to create an instance of GemFireCache
.- See Also:
-
ClientCacheFactory
CacheFactory
Function
-
Method Summary
Modifier and TypeMethodDescriptiondefault T
Alias forinitialize(Object)
.initialize
(T cacheFactory) Initialize the given cache factory.
-
Method Details
-
apply
Alias forinitialize(Object)
. -
initialize
Initialize the given cache factory.- Parameters:
cacheFactory
- cache factory to initialize.- Returns:
- the given cache factory.
- See Also:
-
ClientCacheFactory
CacheFactory
-