Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2008-2021, 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;
import com.hazelcast.cache.CacheEntryView;
import com.hazelcast.cache.impl.merge.entry.DefaultCacheEntryView;
import com.hazelcast.cache.impl.merge.entry.LazyCacheEntryView;
import com.hazelcast.cache.impl.record.CacheRecord;
import com.hazelcast.internal.serialization.Data;
import com.hazelcast.internal.serialization.SerializationService;
/**
* A class providing static factory methods that create various entry view objects.
*/
public final class CacheEntryViews {
private CacheEntryViews() {
}
/**
* Types of built-in {@link CacheEntryView} implementations.
*/
public enum CacheEntryViewType {
/**
* Represents {@link DefaultCacheEntryView}
*/
DEFAULT,
/**
* Represents {@link LazyCacheEntryView}
*/
LAZY
}
/**
* Creates a {@link DefaultCacheEntryView} instance.
*
* @param key the key to be wrapped
* @param value the value to be wrapped
* @param record {@link CacheRecord} instance to gather additional entry view properties like access time,
* expiration time and access hit
* @return the {@link DefaultCacheEntryView} instance
*/
public static CacheEntryView createDefaultEntryView(Data key, Data value, Data expiryPolicy,
CacheRecord