org.opendaylight.infrautils.caches.CacheConfig Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Red Hat, Inc. and others. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package org.opendaylight.infrautils.caches;
import org.immutables.value.Value;
/**
* Configuration of a {@link Cache}.
*
* @author Michael Vorburger.ch
*/
@Value.Immutable
public abstract class CacheConfig extends BaseCacheConfig {
/**
* Function used to obtain values of this Cache, given a key.
*/
public abstract CacheFunction cacheFunction();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy