All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.container.entries.L1InternalCacheEntry Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.container.entries;

/**
 * A {@link org.infinispan.container.entries.InternalCacheEntry} implementation to store a L1 entry.
 *
 * @author Pedro Ruivo
 * @since 7.1
 */
public class L1InternalCacheEntry extends MortalCacheEntry {

   public L1InternalCacheEntry(Object key, Object value, long lifespan, long created) {
      super(key, value, lifespan, created);
   }

   @Override
   public boolean isL1Entry() {
      return true;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy