Interface NamedCache<K,V> 
- Type Parameters:
 K- the type of the cache entry keysV- the type of the cache entry values
- All Superinterfaces:
 AutoCloseable,CacheMap<K,,V> ConcurrentMap<K,,V> InvocableMap<K,,V> Map<K,,V> NamedCollection,NamedMap<K,,V> ObservableMap<K,,V> QueryMap<K,,V> Releasable
- All Known Implementing Classes:
 BundlingNamedCache,ContinuousQueryCache,ConverterCollections.ConverterNamedCache,NearCache,ReadonlyNamedCache,VersionedNearCache,WrapperNamedCache
- Since:
 - Coherence 1.1.2
 - Author:
 - gg 2002.03.27
 
- 
Nested Class Summary
Nested classes/interfaces inherited from interface com.tangosol.util.InvocableMap
InvocableMap.Entry<K,V>, InvocableMap.EntryAggregator<K, V, R>, InvocableMap.EntryProcessor<K, V, R>, InvocableMap.ParallelAwareAggregator<K, V, P, R>, InvocableMap.StreamingAggregator<K, V, P, R> Nested classes/interfaces inherited from interface com.tangosol.net.NamedMap
NamedMap.OptionNested classes/interfaces inherited from interface com.tangosol.util.QueryMap
QueryMap.Entry<K,V>  - 
Field Summary
Fields inherited from interface com.tangosol.net.cache.CacheMap
EXPIRY_DEFAULT, EXPIRY_NEVERFields inherited from interface com.tangosol.util.ConcurrentMap
LOCK_ALL - 
Method Summary
Modifier and TypeMethodDescriptiondefault <C extends NamedCache<K,V>> 
CRequest a specific type of reference to aNamedCachethat thisNamedCachemay additionally implement or support.default AsyncNamedCache<K, V> async()Return an asynchronous wrapper for this NamedCache.default AsyncNamedCache<K, V> async(AsyncNamedMap.Option... options) Return an asynchronous wrapper for this NamedCache.default voidforEach(Collection<? extends K> collKeys, BiConsumer<? super K, ? super V> action) Perform the given action for each entry selected by the specified key set until all entries have been processed or the action throws an exception.Return the cache name.Return the CacheService that this NamedCache is a part of.Associates the specified value with the specified key in this cache and allows to specify an expiry for the cache entry.default ViewBuilder<K, V> view()Construct aviewof thisNamedCache.Methods inherited from interface com.tangosol.util.ConcurrentMap
containsKey, containsValue, get, isEmpty, lock, lock, put, putAll, remove, size, unlockMethods inherited from interface com.tangosol.util.InvocableMap
aggregate, aggregate, aggregate, compute, compute, computeIfAbsent, computeIfAbsent, computeIfPresent, computeIfPresent, getOrDefault, invoke, invokeAll, invokeAll, invokeAll, merge, merge, putIfAbsent, remove, replace, replace, replaceAll, replaceAll, replaceAll, replaceAll, stream, stream, stream, stream, stream, streamMethods inherited from interface com.tangosol.net.NamedCollection
destroy, isDestroyedMethods inherited from interface com.tangosol.net.NamedMap
clear, getAll, getName, getService, isActive, isReady, truncateMethods inherited from interface com.tangosol.util.ObservableMap
addMapListener, addMapListener, addMapListener, removeMapListener, removeMapListener, removeMapListenerMethods inherited from interface com.tangosol.util.QueryMap
addIndex, addIndex, entrySet, entrySet, forEach, forEach, keySet, removeIndex, values, valuesMethods inherited from interface com.tangosol.net.Releasable
close, isReleased, release 
- 
Method Details
- 
getCacheName
String getCacheName()Return the cache name.- Returns:
 - the cache name
 
 - 
getCacheService
CacheService getCacheService()Return the CacheService that this NamedCache is a part of.- Returns:
 - the CacheService
 
 - 
put
Associates the specified value with the specified key in this cache and allows to specify an expiry for the cache entry.Note: Though NamedCache interface extends
CacheMap, not all implementations currently support this functionality.For example, if a cache is configured to be a replicated, optimistic or distributed cache then its backing map must be configured as a local cache. If a cache is configured to be a near cache then the front map must to be configured as a local cache and the back map must support this feature as well, typically by being a distributed cache backed by a local cache (as above.)
- Specified by:
 putin interfaceCacheMap<K,V> - Parameters:
 key- key with which the specified value is to be associatedvalue- value to be associated with the specified keycMillis- the number of milliseconds until the cache entry will expire, also referred to as the entry's "time to live"; passCacheMap.EXPIRY_DEFAULTto use the cache's default time-to-live setting; passCacheMap.EXPIRY_NEVERto indicate that the cache entry should never expire; this milliseconds value is not a date/time value, such as is returned from System.currentTimeMillis()- Returns:
 - previous value associated with specified key, or null if there was no mapping for key. A null return can also indicate that the map previously associated null with the specified key, if the implementation supports null values
 - Throws:
 UnsupportedOperationException- if the requested expiry is a positive value and the implementation does not support expiry of cache entries- Since:
 - Coherence 2.3
 
 - 
forEach
Perform the given action for each entry selected by the specified key set until all entries have been processed or the action throws an exception.Exceptions thrown by the action are relayed to the caller.
The implementation processes each entry on the client and should only be used for read-only client-side operations (such as adding cache entries to a UI widget, for example).
Any entry mutation caused by the specified action will not be propagated to the server when this method is called on a distributed cache, so it should be avoided. The mutating operations on a subset of entries should be implemented using one of
InvocableMap.invokeAll(com.tangosol.util.InvocableMap.EntryProcessor<K, V, R>),Map.replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>),Map.compute(K, java.util.function.BiFunction<? super K, ? super V, ? extends V>), orMap.merge(K, V, java.util.function.BiFunction<? super V, ? super V, ? extends V>)methods instead. - 
as
Request a specific type of reference to aNamedCachethat thisNamedCachemay additionally implement or support.- Type Parameters:
 C- the type ofNamedCache- Parameters:
 clzNamedCache- the class ofNamedCache- Returns:
 - a 
NamedCacheof the requested type - Throws:
 UnsupportedOperationException- when thisNamedCachedoesn't support or implement the requested class
 - 
async
Return an asynchronous wrapper for this NamedCache.By default, the order of execution of asynchronous operation invoked on the returned AsyncNamedCache will be preserved by ensuring that all operations invoked from the same client thread are executed on the server sequentially, using the same
unit-of-order. This tends to provide best performance for fast, non-blocking operations.However, when invoking CPU-intensive or blocking operations, such as read- or write-through operations that access remote database or web service, for example, it may be very beneficial to allow the server to parallelize execution by passing
AsyncNamedMap.OrderBy.none()configuration option to theasync(AsyncNamedCache.Option...)method. Note, that in that case there are no guarantees for the order of execution.- Returns:
 - asynchronous wrapper for this NamedCache
 
 - 
async
Return an asynchronous wrapper for this NamedCache.By default, the order of execution of asynchronous operation invoked on the returned AsyncNamedCache will be preserved by ensuring that all operations invoked from the same client thread are executed on the server sequentially, using the same
unit-of-order. This tends to provide the best performance for fast, non-blocking operations.However, when invoking CPU-intensive or blocking operations, such as read- or write-through operations that access remote database or web service, for example, it may be very beneficial to allow the server to parallelize execution by passing
AsyncNamedMap.OrderBy.none()configuration option to this method. Note, that in that case there are no guarantees for the order of execution. - 
view
Construct aviewof thisNamedCache.- Specified by:
 viewin interfaceNamedMap<K,V> - Returns:
 - a local 
viewfor thisNamedCache - Since:
 - 12.2.1.4
 - See Also:
 
 
 -