net.sf.ehcache.Ehcache.dispose()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(107)

本文整理了Java中net.sf.ehcache.Ehcache.dispose()方法的一些代码示例,展示了Ehcache.dispose()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ehcache.dispose()方法的具体详情如下:
包路径:net.sf.ehcache.Ehcache
类名称:Ehcache
方法名:dispose

Ehcache.dispose介绍

[英]Flushes all cache items from memory to auxilliary caches and close the auxilliary caches.

Should be invoked only by CacheManager.
[中]将所有缓存项从内存刷新到辅助缓存,并关闭辅助缓存。
应仅由CacheManager调用。

代码示例

代码示例来源:origin: net.sf.ehcache/ehcache

/**
 * {@inheritDoc}
 */
public void dispose() throws IllegalStateException {
  underlyingCache.dispose();
}

代码示例来源:origin: net.sf.ehcache/ehcache

/**
* {@inheritDoc}
*/
public void dispose() throws IllegalStateException {
  // THIS IS GENERATED CODE -- DO NOT HAND MODIFY!
  Thread t = Thread.currentThread();
  ClassLoader prev = t.getContextClassLoader();
  t.setContextClassLoader(this.classLoader);
  try {
    this.cache.dispose();
  } finally {
    t.setContextClassLoader(prev);
  }
}

代码示例来源:origin: net.sf.ehcache/ehcache

/**
 * Remove a cache from the CacheManager. The cache is disposed of.
 *
 * @param cacheName
 *            the cache name
 * @throws IllegalStateException
 *             if the cache is not {@link Status#STATUS_ALIVE}
 */
public synchronized void removeCache(String cacheName) throws IllegalStateException {
  checkStatus();
  // NPE guard
  if (cacheName == null || cacheName.length() == 0) {
    return;
  }
  Ehcache cache = ehcaches.remove(cacheName);
  if (cache != null && cache.getStatus().equals(Status.STATUS_ALIVE)) {
    cache.dispose();
    runtimeCfg.removeCache(cache.getCacheConfiguration());
    cacheManagerEventListenerRegistry.notifyCacheRemoved(cache.getName());
  }
}

代码示例来源:origin: net.sf.ehcache/ehcache

cache.dispose();
defaultCache.dispose();

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void dispose() throws IllegalStateException {
  underlyingCache.dispose();
}

代码示例来源:origin: com.github.albfernandez.richfaces/richfaces-core

public void stop() {
  if (!preconfiguredCache) {
    cache.dispose();
  }
}

代码示例来源:origin: ehcache/ehcache-jcache

void shutdown() {
  closed = true;
  ehcache.dispose();
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

/**
 * {@inheritDoc}
 */
public void dispose() throws IllegalStateException {
  underlyingCache.dispose();
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

/**
 * {@inheritDoc}
 */
public void dispose() throws IllegalStateException {
  underlyingCache.dispose();
}

代码示例来源:origin: net.sf.ehcache/ehcache-explicitlocking

/**
 * Flushes all cache items from memory to auxilliary caches and close the auxilliary caches.
 * <p/>
 * Should be invoked only by CacheManager.
 * 
 * @throws IllegalStateException
 *             if the cache is not {@link net.sf.ehcache.Status#STATUS_ALIVE}
 */
public void dispose() throws IllegalStateException {
  cache.dispose();
}

代码示例来源:origin: org.ehcache/jcache

void shutdown() {
  closed = true;
  ehcache.dispose();
}

代码示例来源:origin: org.sakaiproject.kernel/sakai-kernel-impl

@Override
public void close() {
  this.cache.dispose();
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

/**
* {@inheritDoc}
*/
public void dispose() throws IllegalStateException {
  // THIS IS GENERATED CODE -- DO NOT HAND MODIFY!
  Thread t = Thread.currentThread();
  ClassLoader prev = t.getContextClassLoader();
  t.setContextClassLoader(this.classLoader);
  try {
    this.cache.dispose();
  } finally {
    t.setContextClassLoader(prev);
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
* {@inheritDoc}
*/
public void dispose() throws IllegalStateException {
  // THIS IS GENERATED CODE -- DO NOT HAND MODIFY!
  Thread t = Thread.currentThread();
  ClassLoader prev = t.getContextClassLoader();
  t.setContextClassLoader(this.classLoader);
  try {
    this.cache.dispose();
  } finally {
    t.setContextClassLoader(prev);
  }
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

/**
* {@inheritDoc}
*/
public void dispose() throws IllegalStateException {
  // THIS IS GENERATED CODE -- DO NOT HAND MODIFY!
  Thread t = Thread.currentThread();
  ClassLoader prev = t.getContextClassLoader();
  t.setContextClassLoader(this.classLoader);
  try {
    this.cache.dispose();
  } finally {
    t.setContextClassLoader(prev);
  }
}

代码示例来源:origin: com.madgag/mini-git-server-server

public void dispose() throws IllegalStateException {
 self().dispose();
}

代码示例来源:origin: rtyley/mini-git-server

public void dispose() throws IllegalStateException {
 self().dispose();
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

/**
 * Remove a cache from the CacheManager. The cache is disposed of.
 *
 * @param cacheName
 *            the cache name
 * @throws IllegalStateException
 *             if the cache is not {@link Status#STATUS_ALIVE}
 */
public synchronized void removeCache(String cacheName) throws IllegalStateException {
  checkStatus();
  // NPE guard
  if (cacheName == null || cacheName.length() == 0) {
    return;
  }
  Ehcache cache = ehcaches.remove(cacheName);
  if (cache != null && cache.getStatus().equals(Status.STATUS_ALIVE)) {
    cache.dispose();
    runtimeCfg.removeCache(cache.getCacheConfiguration());
    cacheManagerEventListenerRegistry.notifyCacheRemoved(cache.getName());
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * Remove a cache from the CacheManager. The cache is disposed of.
 *
 * @param cacheName
 *            the cache name
 * @throws IllegalStateException
 *             if the cache is not {@link Status#STATUS_ALIVE}
 */
public synchronized void removeCache(String cacheName) throws IllegalStateException {
  checkStatus();
  // NPE guard
  if (cacheName == null || cacheName.length() == 0) {
    return;
  }
  Ehcache cache = ehcaches.remove(cacheName);
  if (cache != null && cache.getStatus().equals(Status.STATUS_ALIVE)) {
    cache.dispose();
    runtimeCfg.removeCache(cache.getCacheConfiguration());
    cacheManagerEventListenerRegistry.notifyCacheRemoved(cache.getName());
  }
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

/**
 * Remove a cache from the CacheManager. The cache is disposed of.
 *
 * @param cacheName
 *            the cache name
 * @throws IllegalStateException
 *             if the cache is not {@link Status#STATUS_ALIVE}
 */
public synchronized void removeCache(String cacheName) throws IllegalStateException {
  checkStatus();
  // NPE guard
  if (cacheName == null || cacheName.length() == 0) {
    return;
  }
  Ehcache cache = ehcaches.remove(cacheName);
  if (cache != null && cache.getStatus().equals(Status.STATUS_ALIVE)) {
    cache.dispose();
    runtimeCfg.removeCache(cache.getCacheConfiguration());
    cacheManagerEventListenerRegistry.notifyCacheRemoved(cache.getName());
  }
}

相关文章

微信公众号

最新文章

更多

Ehcache类方法