Class JCacheCache

    • Constructor Detail

      • JCacheCache

        public JCacheCache​(javax.cache.Cache<Object,​Object> jcache)
        Create a JCacheCache instance.
        Parameters:
        jcache - backing JCache Cache instance
      • JCacheCache

        public JCacheCache​(javax.cache.Cache<Object,​Object> jcache,
                           boolean allowNullValues)
        Create a JCacheCache instance.
        Parameters:
        jcache - backing JCache Cache instance
        allowNullValues - whether to accept and convert null values for this cache
    • Method Detail

      • getName

        public final String getName()
        Description copied from interface: Cache
        Return the cache name.
      • getNativeCache

        public final javax.cache.Cache<Object,​ObjectgetNativeCache()
        Description copied from interface: Cache
        Return the underlying native cache provider.
      • get

        public <T> T get​(Object key,
                         Callable<T> valueLoader)
        Description copied from interface: Cache
        Return the value to which this cache maps the specified key, obtaining that value from valueLoader if necessary. This method provides a simple substitute for the conventional "if cached, return; otherwise create, cache and return" pattern.

        If possible, implementations should ensure that the loading operation is synchronized so that the specified valueLoader is only called once in case of concurrent access on the same key.

        If the valueLoader throws an exception, it is wrapped in a Cache.ValueRetrievalException

        Parameters:
        key - the key whose associated value is to be returned
        Returns:
        the value to which this cache maps the specified key
      • put

        public void put​(Object key,
                        Object value)
        Description copied from interface: Cache
        Associate the specified value with the specified key in this cache.

        If the cache previously contained a mapping for this key, the old value is replaced by the specified value.

        Parameters:
        key - the key with which the specified value is to be associated
        value - the value to be associated with the specified key
      • putIfAbsent

        public Cache.ValueWrapper putIfAbsent​(Object key,
                                              Object value)
        Description copied from interface: Cache
        Atomically associate the specified value with the specified key in this cache if it is not set already.

        This is equivalent to:

        
         Object existingValue = cache.get(key);
         if (existingValue == null) {
             cache.put(key, value);
             return null;
         } else {
             return existingValue;
         }
         
        except that the action is performed atomically. While all out-of-the-box CacheManager implementations are able to perform the put atomically, the operation may also be implemented in two steps, e.g. with a check for presence and a subsequent put, in a non-atomic way. Check the documentation of the native cache implementation that you are using for more details.
        Parameters:
        key - the key with which the specified value is to be associated
        value - the value to be associated with the specified key
        Returns:
        the value to which this cache maps the specified key (which may be null itself), or also null if the cache did not contain any mapping for that key prior to this call. Returning null is therefore an indicator that the given value has been associated with the key.
      • evict

        public void evict​(Object key)
        Description copied from interface: Cache
        Evict the mapping for this key from this cache if it is present.
        Parameters:
        key - the key whose mapping is to be removed from the cache
      • clear

        public void clear()
        Description copied from interface: Cache
        Remove all mappings from the cache.