Interface CoherenceConfigurerCustomizer<T extends CoherenceConfigurer>
- 
- Type Parameters:
 T- the specific type of theCoherenceConfigurer
- 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 interface CoherenceConfigurerCustomizer<T extends CoherenceConfigurer>
Callback interface that can be used to customize theCoherenceConfigurer.- Since:
 - 3.0
 - Author:
 - Gunnar Hillert
 - See Also:
 DefaultCoherenceConfigurer
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcustomize(T configurer)Callback to customize aCoherenceConfigurerinstance. 
 - 
 
- 
- 
Method Detail
- 
customize
void customize(T configurer)
Callback to customize aCoherenceConfigurerinstance.- Parameters:
 configurer- the coherenceConfigurer to customize
 
 - 
 
 -