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

com.hazelcast.map.EntryViews Maven / Gradle / Ivy

There is a newer version: 5.0-BETA-1
Show newest version
package com.hazelcast.map;

import com.hazelcast.core.EntryView;
import com.hazelcast.map.record.Record;
import com.hazelcast.map.record.RecordStatistics;

import java.util.concurrent.TimeUnit;

/**
 * A class providing static factory methods that create various entry view objects.
 */
public final class EntryViews {

    private EntryViews() {
    }

    /**
     * Creates a null entry view that has only key and no value.
     *
     * @param key the key object which will be wrapped in {@link com.hazelcast.core.EntryView}.
     * @param  the type of key.
     * @param  the type of value.
     * @return
     */
    public static  EntryView createNullEntryView(K key) {
        return new NullEntryView(key);
    }

    public static  EntryView createSimpleEntryView(K key, V value, Record record) {
        final TimeUnit unit = TimeUnit.NANOSECONDS;
        final SimpleEntryView simpleEntryView = new SimpleEntryView(key, value);
        simpleEntryView.setCost(record.getCost());
        simpleEntryView.setVersion(record.getVersion());
        simpleEntryView.setEvictionCriteriaNumber(record.getEvictionCriteriaNumber());
        simpleEntryView.setLastAccessTime(unit.toMillis(record.getLastAccessTime()));
        simpleEntryView.setLastUpdateTime(unit.toMillis(record.getLastUpdateTime()));
        simpleEntryView.setTtl(unit.toMillis(record.getTtl()));

        final RecordStatistics statistics = record.getStatistics();
        if (statistics != null) {
            simpleEntryView.setHits(statistics.getHits());
            simpleEntryView.setCreationTime(unit.toMillis(statistics.getCreationTime()));
            simpleEntryView.setExpirationTime(unit.toMillis(statistics.getExpirationTime()));
            simpleEntryView.setLastStoredTime(unit.toMillis(statistics.getLastStoredTime()));
        }
        return simpleEntryView;
    }

    public static  EntryView createSimpleEntryView() {
        return new SimpleEntryView();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy