Package org.apache.camel.spi
Interface ValidatorRegistry<K>
- Type Parameters:
K- validator key
- All Superinterfaces:
AutoCloseable,Map<K,,Validator> Service,StaticService
Registry to cache validators in memory.
The registry contains two caches:
- static - which keeps all the validators in the cache for the entire lifecycle
- dynamic - which keeps the validators in a
org.apache.camel.support.LRUCacheand may evict validators which hasn't been requested recently
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoidcleanUp()Cleanup the cache (purging stale entries)intNumber of validators in the dynamic registryintMaximum number of entries to store in the dynamic registrybooleanWhether the givenValidatoris stored in the dynamic cachebooleanWhether the givenValidatoris stored in the static cachevoidpurge()Purges the cache (removes validators from the dynamic cache)resolveValidator(K key) Lookup aValidatorin the registry which supports the validation for the data type represented by the key.intNumber of validators in the static registry.Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Method Details
-
resolveValidator
Lookup aValidatorin the registry which supports the validation for the data type represented by the key.- Parameters:
key- a key represents the data type- Returns:
Validatorif matched, otherwise null
-
staticSize
int staticSize()Number of validators in the static registry. -
dynamicSize
int dynamicSize()Number of validators in the dynamic registry -
getMaximumCacheSize
int getMaximumCacheSize()Maximum number of entries to store in the dynamic registry -
purge
void purge()Purges the cache (removes validators from the dynamic cache) -
isStatic
Whether the givenValidatoris stored in the static cache- Parameters:
type- the data type- Returns:
- true if in static cache, false if not
-
isDynamic
Whether the givenValidatoris stored in the dynamic cache- Parameters:
type- the data type- Returns:
- true if in dynamic cache, false if not
-
cleanUp
void cleanUp()Cleanup the cache (purging stale entries)
-