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

com.hazelcast.cache.impl.nearcache.NearCacheRecord Maven / Gradle / Ivy

There is a newer version: 5.0-BETA-1
Show newest version
/*
 * Copyright (c) 2008-2015, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.cache.impl.nearcache;

import com.hazelcast.cache.impl.eviction.Evictable;
import com.hazelcast.cache.impl.eviction.Expirable;

/**
 * 

* An expirable and evictable data object which represents a near cache entry. *

* Record of {@link com.hazelcast.cache.impl.nearcache.NearCacheRecordStore}. * * @see com.hazelcast.cache.impl.eviction.Expirable * @see com.hazelcast.cache.impl.eviction.Evictable * * @param the type of the value stored by this {@link NearCacheRecord} */ public interface NearCacheRecord extends Expirable, Evictable { int TIME_NOT_SET = -1; /** * Gets the value of this {@link NearCacheRecord}. * * @return the value of this {@link NearCacheRecord} */ V getValue(); /** * Sets the value of this {@link NearCacheRecord}. * * @param value the value for this {@link NearCacheRecord} */ void setValue(V value); /** * Sets the creation time of this {@link Evictable} in milliseconds. * * @param time the creation time for this {@link Evictable} in milliseconds */ void setCreationTime(long time); /** * Sets the access time of this {@link Evictable} in milliseconds. * * @param time the latest access time of this {@link Evictable} in milliseconds */ void setAccessTime(long time); /** * Sets the access hit count of this {@link Evictable}. * * @param hit the access hit count for this {@link Evictable} */ void setAccessHit(int hit); /** * Increases the access hit count of this {@link Evictable} as 1. */ void incrementAccessHit(); /** * Resets the access hit count of this {@link Evictable} to 0. */ void resetAccessHit(); /** * Checks whether the maximum idle time is passed with respect to the provided time * without any access during this time period as maxIdleSeconds. * * @param maxIdleMilliSeconds maximum idle time in milliseconds * @param now current time in milliseconds * @return true if exceeds max idle seconds, otherwise false */ boolean isIdleAt(long maxIdleMilliSeconds, long now); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy