/* * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.container.entries; /** * A representation of an InternalCacheEntry that does not have a reference to the key. This should be used if the key * is either not needed or available elsewhere as it is more efficient to marshall and unmarshall. Probably most useful * in cache stores. * <p/> * Note that this should not be used to optimize memory overhead, since the saving of an additional reference to a key * (a single object reference) does not warrant the cost of constructing an InternalCacheValue, where an existing * InternalCacheEntry is already referenced. * <p/> * Use of this interface <i>only</i> makes sense when marshalling is involved, since the cost of marshalling the key * again can be sidestepped using an InternalCacheValue if the key is already known/marshalled. * <p/> * * @author Manik Surtani * @since 4.0 */ public interface InternalCacheValue { /** * @return the value represented by this internal wrapper */ Object getValue(); InternalCacheEntry toInternalCacheEntry(Object key); /** * @param now the current time as expressed by {@link System#currentTimeMillis()} * @return true if the entry has expired; false otherwise */ boolean isExpired(long now); /** * @return true if the entry has expired; false otherwise */ boolean isExpired(); /** * @return true if the entry can expire, false otherwise */ boolean canExpire(); /** * @return timestamp when the entry was created */ long getCreated(); /** * @return timestamp when the entry was last used */ long getLastUsed(); /** * @return lifespan of the value */ long getLifespan(); /** * @return max idle time allowed */ long getMaxIdle(); }