/* * Copyright (c) 2008-2017, 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.replicatedmap.impl.record; import com.hazelcast.core.EntryView; import com.hazelcast.nio.IOUtil; import com.hazelcast.nio.ObjectDataInput; import com.hazelcast.nio.ObjectDataOutput; import com.hazelcast.nio.serialization.IdentifiedDataSerializable; import com.hazelcast.replicatedmap.impl.operation.ReplicatedMapDataSerializerHook; import java.io.IOException; public class ReplicatedMapEntryView<K, V> implements EntryView, IdentifiedDataSerializable { private static final int NOT_AVAILABLE = -1; private K key; private V value; private long creationTime; private long hits; private long lastAccessTime; private long lastUpdateTime; private long ttl; public ReplicatedMapEntryView(K key, V value) { this.key = key; this.value = value; } public ReplicatedMapEntryView() { } @Override public K getKey() { return key; } public void setKey(K key) { this.key = key; } @Override public V getValue() { return value; } public void setValue(V value) { this.value = value; } @Override public long getCost() { return NOT_AVAILABLE; } @Override public long getCreationTime() { return creationTime; } public void setCreationTime(long creationTime) { this.creationTime = creationTime; } @Override public long getExpirationTime() { return NOT_AVAILABLE; } @Override public long getHits() { return hits; } public void setHits(long hits) { this.hits = hits; } @Override public long getLastAccessTime() { return lastAccessTime; } public void setLastAccessTime(long lastAccessTime) { this.lastAccessTime = lastAccessTime; } @Override public long getLastStoredTime() { return NOT_AVAILABLE; } @Override public long getLastUpdateTime() { return lastUpdateTime; } public void setLastUpdateTime(long lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } @Override public long getVersion() { return NOT_AVAILABLE; } @Override public long getTtl() { return ttl; } public void setTtl(long ttl) { this.ttl = ttl; } @Override public void writeData(ObjectDataOutput out) throws IOException { IOUtil.writeObject(out, key); IOUtil.writeObject(out, value); out.writeLong(creationTime); out.writeLong(hits); out.writeLong(lastAccessTime); out.writeLong(lastUpdateTime); out.writeLong(ttl); } @Override public void readData(ObjectDataInput in) throws IOException { key = IOUtil.readObject(in); value = IOUtil.readObject(in); creationTime = in.readLong(); hits = in.readLong(); lastAccessTime = in.readLong(); lastUpdateTime = in.readLong(); ttl = in.readLong(); } @Override public int getFactoryId() { return ReplicatedMapDataSerializerHook.F_ID; } @Override public int getId() { return ReplicatedMapDataSerializerHook.ENTRY_VIEW; } @Override public String toString() { return "ReplicatedMapEntryView{" + "key=" + key + ", value=" + value + ", creationTime=" + creationTime + ", hits=" + hits + ", lastAccessTime=" + lastAccessTime + ", lastUpdateTime=" + lastUpdateTime + ", ttl=" + ttl + '}'; } }