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

org.infinispan.manager.CacheContainer Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.manager;

import org.infinispan.Cache;
import org.infinispan.commons.api.BasicCacheContainer;
import org.infinispan.commons.api.CacheContainerAdmin;

public interface CacheContainer extends BasicCacheContainer {
   @Override
    Cache getCache();

   @Override
    Cache getCache(String cacheName);

   /**
    * Provides access to administrative methods which affect the underlying cache container, such as cache creation and
    * removal. If the underlying container is clustered or remote, the operations will affect all nodes.
    */
   default CacheContainerAdmin administration() {
      throw new UnsupportedOperationException();
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy