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

com.hazelcast.map.impl.mapstore.EmptyMapDataStore Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * 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.map.impl.mapstore;

import com.hazelcast.map.impl.mapstore.writebehind.TxnReservedCapacityCounter;
import com.hazelcast.map.impl.mapstore.writebehind.entry.DelayedEntry;

import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import java.util.UUID;

/**
 * Empty map data store for providing neutral null behaviour.
 */
class EmptyMapDataStore implements MapDataStore {

    @Override
    public Object add(Object key, Object value, long expirationTime, long now, UUID transactionId) {
        return value;
    }

    @Override
    public void addForcibly(DelayedEntry delayedEntry) {

    }

    @Override
    public void addTransient(Object key, long now) {
    }

    @Override
    public Object addBackup(Object key, Object value, long expirationTime, long now, UUID transactionId) {
        return value;
    }

    @Override
    public void remove(Object key, long now, UUID transactionId) {
    }

    @Override
    public void removeBackup(Object key, long now, UUID transactionId) {
    }

    @Override
    public void reset() {
    }

    @Override
    public Object load(Object key) {
        return null;
    }

    @Override
    public Map loadAll(Collection keys) {
        return Collections.emptyMap();
    }

    @Override
    public void removeAll(Collection keys) {
    }

    @Override
    public boolean loadable(Object key) {
        return false;
    }

    @Override
    public long softFlush() {
        return 0;
    }

    @Override
    public void hardFlush() {
    }

    @Override
    public Object flush(Object key, Object value, boolean backup) {
        return value;
    }

    @Override
    public boolean isWithExpirationTime() {
        return false;
    }

    @Override
    public TxnReservedCapacityCounter getTxnReservedCapacityCounter() {
        return TxnReservedCapacityCounter.EMPTY_COUNTER;
    }

    @Override
    public int notFinishedOperationsCount() {
        return 0;
    }

    @Override
    public boolean isPostProcessingMapStore() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy