Package one.microstream.cache.types
Interface CacheConfigurationParser
- All Known Implementing Classes:
CacheConfigurationParser.Default
@Deprecated public interface CacheConfigurationParser
Deprecated.
replaced by generic
ConfigurationParser
, will be removed in version 8-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CacheConfigurationParser.Default
Deprecated. -
Method Summary
Modifier and Type Method Description static CacheConfigurationParser
New()
Deprecated.static CacheConfigurationParser
New(CacheConfigurationPropertyParser propertyParser)
Deprecated.CacheConfiguration<?,?>
parse(String data)
Deprecated.Parses the configuration from the given input.<K, V> CacheConfiguration<K,V>
parse(String data, Class<K> keyType, Class<V> valueType)
Deprecated.Parses the configuration from the given input.
-
Method Details
-
parse
Deprecated.Parses the configuration from the given input.- Parameters:
data
- the input to parse- Returns:
- the parsed configuration
- Throws:
CacheConfigurationException
- if an error occurs while parsing
-
parse
Deprecated.Parses the configuration from the given input.- Type Parameters:
K
- the key typeV
- the value type- Parameters:
data
- the input to parsekeyType
- the class for the key typevalueType
- the class for value type- Returns:
- the parsed configuration
- Throws:
CacheConfigurationException
- if an error occurs while parsing
-
New
Deprecated. -
New
Deprecated.
-