org.cache2k.spi.Cache2kCoreProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cache2k-api Show documentation
Show all versions of cache2k-api Show documentation
A light weight and high performance Java caching library. Android and Java 6 compatible.
This artifact contains the official API of cache2k.
package org.cache2k.spi;
/*
* #%L
* cache2k API
* %%
* Copyright (C) 2000 - 2021 headissue GmbH, Munich
* %%
* 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.
* #L%
*/
import org.cache2k.Cache;
import org.cache2k.CacheManager;
import org.cache2k.config.Cache2kConfig;
/**
* Interface to the cache2k implementation. This interface is not intended for the application
* usage. Use the static methods on the {@link CacheManager}.
*
* @author Jens Wilke; created: 2015-03-26
*/
public interface Cache2kCoreProvider {
/**
* @see CacheManager#setDefaultName(String)
*/
void setDefaultManagerName(ClassLoader cl, String s);
/**
* @see CacheManager#getDefaultName()
*/
String getDefaultManagerName(ClassLoader cl);
/**
* @see CacheManager#getInstance(ClassLoader, String)
*/
CacheManager getManager(ClassLoader cl, String name);
/**
* Default class loader, this is the class loader used to load the cache implementation.
*/
ClassLoader getDefaultClassLoader();
/**
* Close all cache2k cache managers.
*/
void close();
/**
* Close all cache manager associated to this class loader.
*/
void close(ClassLoader l);
/**
* Close a specific cache manager by its name.
*/
void close(ClassLoader l, String managerName);
/**
* Create a cache, apply external configuration before creating it.
*/
Cache createCache(CacheManager m, Cache2kConfig cfg);
/**
* Return the effective default configuration for this manager. A different default
* configuration may be provided by the configuration system.
*
* @return mutable configuration instance containing the effective configuration defaults,
* never {@code null}
*/
Cache2kConfig getDefaultConfig(CacheManager m);
/**
* @since 2
*/
String getVersion();
}