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

org.infinispan.api.BasicCacheContainer Maven / Gradle / Ivy

There is a newer version: 15.1.3.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2010 Red Hat Inc. and/or its affiliates and other
 * contributors as indicated by the @author tags. All rights reserved.
 * See the copyright.txt in the distribution for a full listing of
 * individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.infinispan.api;

import org.infinispan.lifecycle.Lifecycle;
import org.infinispan.manager.EmbeddedCacheManager;

/**
 * BasicCacheContainer defines the methods used to obtain a {@link org.infinispan.api.BasicCache}.
 * 

* * * @see org.infinispan.manager.EmbeddedCacheManager * * @author Manik Surtani ([email protected]) * @author Galder Zamarreño * @author [email protected] * @since 4.0 */ public interface BasicCacheContainer extends Lifecycle { String DEFAULT_CACHE_NAME = "___defaultcache"; /** * Retrieves the default cache associated with this cache container. *

* As such, this method is always guaranteed to return the default cache. *

* NB: Shared caches are supported (and in fact encouraged) but if they are used it's the users responsibility to * ensure that at least one but only one caller calls stop() on the cache, and it does so with the awareness * that others may be using the cache. * * @return the default cache. */ BasicCache getCache(); /** * Retrieves a named cache from the system. If the cache has been previously created with the same name, the running * cache instance is returned. Otherwise, this method attempts to create the cache first. *

* In the case of a {@link org.infinispan.manager.EmbeddedCacheManager}: when creating a new cache, this method will * use the configuration passed in to the EmbeddedCacheManager on construction, as a template, and then optionally * apply any overrides previously defined for the named cache using the {@link EmbeddedCacheManager#defineConfiguration(String, org.infinispan.config.Configuration)} * or {@link EmbeddedCacheManager#defineConfiguration(String, String, org.infinispan.config.Configuration)} * methods, or declared in the configuration file. *

* NB: Shared caches are supported (and in fact encouraged) but if they are used it's the users responsibility to * ensure that at least one but only one caller calls stop() on the cache, and it does so with the awareness * that others may be using the cache. * * @param cacheName name of cache to retrieve * @return a cache instance identified by cacheName */ BasicCache getCache(String cacheName); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy