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

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

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

Ehcache.isSampledStatisticsEnabled介绍

[英]Returns if sampled statistics collection is enabled or disabled
[中]如果已启用或禁用采样统计信息收集,则返回

代码示例

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

/**
 * {@inheritDoc}
 * 
 * @see net.sf.ehcache.Ehcache#isSampledStatisticsEnabled()
 */
public boolean isSampledStatisticsEnabled() {
  return cache.isSampledStatisticsEnabled();
}

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

/**
 * {@inheritDoc}
 */
public boolean isSampledStatisticsEnabled() {
  return underlyingCache.isSampledStatisticsEnabled();
}

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

public boolean isSampledStatisticsEnabled() {
 return self.isSampledStatisticsEnabled();
}

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

public boolean isSampledStatisticsEnabled() {
 return self.isSampledStatisticsEnabled();
}

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

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

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

/**
 * {@inheritDoc}
 */
public void enableSampledStatistics() {
  if (!cache.isSampledStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(true);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

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

/**
 * {@inheritDoc}
 */
public void disableSampledStatistics() {
  if (cache.isSampledStatisticsEnabled()) {
    try {
      cache.setSampledStatisticsEnabled(false);
    } catch (RuntimeException e) {
      throw Utils.newPlainException(e);
    }
  }
}

代码示例来源:origin: org.terracotta/ehcache-probe

@RestMethod
public void getCacheStatisticsState(RestResponse response)
    throws IOException {
  Object result = Boolean.TRUE;
  for (String cacheName : cacheManager.getCacheNames()) {
    Ehcache cache = cacheManager.getEhcache(cacheName);
    if (cache != null) {
      try {
        if (!cache.isSampledStatisticsEnabled()) {
          result = Boolean.FALSE;
          break;
        }
      } catch (NoSuchMethodError e) {
        result = "na";
        break;
      }
    }
  }
  response.value(result.toString());
}

相关文章

Ehcache类方法