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

org.jboss.as.clustering.infinispan.cache.LazyBasicCache Maven / Gradle / Ivy

There is a newer version: 34.0.0.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.jboss.as.clustering.infinispan.cache;

import java.security.PrivilegedAction;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.Supplier;

import org.infinispan.commons.api.BasicCache;
import org.wildfly.security.manager.WildFlySecurityManager;

/**
 * A cache that resolves itself from its cache container lazily.
 * @author Paul Ferraro
 */
public abstract class LazyBasicCache> implements BasicCache, Supplier, PrivilegedAction {

    private final String name;

    protected LazyBasicCache(String name) {
        this.name = name;
    }

    @Override
    public C get() {
        return WildFlySecurityManager.doUnchecked(this);
    }

    @Override
    public String getName() {
        return this.name;
    }

    @Override
    public void start() {
        this.get().start();
    }

    @Override
    public void stop() {
        this.get().stop();
    }

    @Override
    public String getVersion() {
        return this.get().getVersion();
    }

    @Override
    public boolean containsKey(Object key) {
        return this.get().containsKey(key);
    }

    @Override
    public boolean containsValue(Object value) {
        return this.get().containsValue(value);
    }

    @Override
    public boolean isEmpty() {
        return this.get().isEmpty();
    }

    @Override
    public Set> entrySet() {
        return this.get().entrySet();
    }

    @Override
    public Set keySet() {
        return this.get().keySet();
    }

    @Override
    public Collection values() {
        return this.get().values();
    }

    @Override
    public void clear() {
        this.get().clear();
    }

    @Override
    public V compute(K key, BiFunction remappingFunction) {
        return this.get().compute(key, remappingFunction);
    }

    @Override
    public V compute(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().compute(key, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public V compute(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().compute(key, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V computeIfAbsent(K key, Function mappingFunction) {
        return this.get().computeIfAbsent(key, mappingFunction);
    }

    @Override
    public V computeIfAbsent(K key, Function mappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().computeIfAbsent(key, mappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public V computeIfAbsent(K key, Function mappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().computeIfAbsent(key, mappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V computeIfPresent(K key, BiFunction remappingFunction) {
        return this.get().computeIfPresent(key, remappingFunction);
    }

    @Override
    public V computeIfPresent(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().computeIfPresent(key, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public V computeIfPresent(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().computeIfPresent(key, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V get(Object key) {
        return this.get().get(key);
    }

    @Override
    public V merge(K key, V value, BiFunction remappingFunction) {
        return this.get().merge(key, value, remappingFunction);
    }

    @Override
    public V merge(K key, V value, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().merge(key, value, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public V merge(K key, V value, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().merge(key, value, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V put(K key, V value) {
        return this.get().put(key, value);
    }

    @Override
    public V put(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().put(key, value, lifespan, lifespanUnit);
    }

    @Override
    public V put(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().put(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public void putAll(Map map) {
        this.get().putAll(map);
    }

    @Override
    public void putAll(Map map, long lifespan, TimeUnit lifespanUnit) {
        this.get().putAll(map, lifespan, lifespanUnit);
    }

    @Override
    public void putAll(Map map, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        this.get().putAll(map, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V putIfAbsent(K key, V value) {
        return this.get().putIfAbsent(key, value);
    }

    @Override
    public V putIfAbsent(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().putIfAbsent(key, value, lifespan, lifespanUnit);
    }

    @Override
    public V putIfAbsent(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().putIfAbsent(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public V remove(Object key) {
        return this.get().remove(key);
    }

    @Override
    public boolean remove(Object key, Object value) {
        return this.get().remove(key, value);
    }

    @Override
    public V replace(K key, V value) {
        return this.get().replace(key, value);
    }

    @Override
    public V replace(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().replace(key, value, lifespan, lifespanUnit);
    }

    @Override
    public V replace(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().replace(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public boolean replace(K key, V oldValue, V newValue) {
        return this.get().replace(key, oldValue, newValue);
    }

    @Override
    public boolean replace(K key, V oldValue, V newValue, long lifespan, TimeUnit lifespanUnit) {
        return this.get().replace(key, oldValue, newValue, lifespan, lifespanUnit);
    }

    @Override
    public boolean replace(K key, V oldValue, V newValue, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().replace(key, oldValue, newValue, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public int size() {
        return this.get().size();
    }

    @Override
    public CompletableFuture clearAsync() {
        return this.get().clearAsync();
    }

    @Override
    public CompletableFuture computeAsync(K key, BiFunction remappingFunction) {
        return this.get().computeAsync(key, remappingFunction);
    }

    @Override
    public CompletableFuture computeAsync(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().computeAsync(key, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture computeAsync(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().computeAsync(key, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture computeIfAbsentAsync(K key, Function mappingFunction) {
        return this.get().computeIfAbsentAsync(key, mappingFunction);
    }

    @Override
    public CompletableFuture computeIfAbsentAsync(K key, Function mappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().computeIfAbsentAsync(key, mappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture computeIfAbsentAsync(K key, Function mappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().computeIfAbsentAsync(key, mappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture computeIfPresentAsync(K key, BiFunction remappingFunction) {
        return this.get().computeIfPresentAsync(key, remappingFunction);
    }

    @Override
    public CompletableFuture computeIfPresentAsync(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().computeIfPresentAsync(key, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture computeIfPresentAsync(K key, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().computeIfPresentAsync(key, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture getAsync(K key) {
        return this.get().getAsync(key);
    }

    @Override
    public CompletableFuture mergeAsync(K key, V value, BiFunction remappingFunction) {
        return this.get().mergeAsync(key, value, remappingFunction);
    }

    @Override
    public CompletableFuture mergeAsync(K key, V value, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit) {
        return this.get().mergeAsync(key, value, remappingFunction, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture mergeAsync(K key, V value, BiFunction remappingFunction, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().mergeAsync(key, value, remappingFunction, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture putAsync(K key, V value) {
        return this.get().putAsync(key, value);
    }

    @Override
    public CompletableFuture putAsync(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().putAsync(key, value, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture putAsync(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().putAsync(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture putAllAsync(Map entries) {
        return this.get().putAllAsync(entries);
    }

    @Override
    public CompletableFuture putAllAsync(Map entries, long lifespan, TimeUnit lifespanUnit) {
        return this.get().putAllAsync(entries, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture putAllAsync(Map entries, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().putAllAsync(entries, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture putIfAbsentAsync(K key, V value) {
        return this.get().putIfAbsentAsync(key, value);
    }

    @Override
    public CompletableFuture putIfAbsentAsync(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().putIfAbsentAsync(key, value, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture putIfAbsentAsync(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().putIfAbsentAsync(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture removeAsync(Object key) {
        return this.get().removeAsync(key);
    }

    @Override
    public CompletableFuture removeAsync(Object key, Object value) {
        return this.get().removeAsync(key, value);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V value) {
        return this.get().replaceAsync(key, value);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V value, long lifespan, TimeUnit lifespanUnit) {
        return this.get().replaceAsync(key, value, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().replaceAsync(key, value, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V oldValue, V newValue) {
        return this.get().replaceAsync(key, oldValue, newValue);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V oldValue, V newValue, long lifespan, TimeUnit lifespanUnit) {
        return this.get().replaceAsync(key, oldValue, newValue, lifespan, lifespanUnit);
    }

    @Override
    public CompletableFuture replaceAsync(K key, V oldValue, V newValue, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit) {
        return this.get().replaceAsync(key, oldValue, newValue, lifespan, lifespanUnit, maxIdle, maxIdleUnit);
    }

    @Override
    public CompletableFuture sizeAsync() {
        return this.get().sizeAsync();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy