net.sf.ehcache.config.Configuration.verifyGreaterThanZero()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(104)

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

Configuration.verifyGreaterThanZero介绍

暂无

代码示例

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the OffHeap Tier.
 * @param maxBytesOffHeap max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalOffHeap(final Long maxBytesOffHeap) {
  String prop = "maxBytesLocalOffHeap";
  verifyGreaterThanZero(maxBytesOffHeap, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalOffHeap;
  this.maxBytesLocalOffHeap = maxBytesOffHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOffHeap);
  }
}

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

/**
 * Sets the maximum amount of bytes the cache manager being configured will use on the OnHeap tier
 * @param maxBytesOnHeap amount of bytes
 */
public void setMaxBytesLocalHeap(final Long maxBytesOnHeap) {
  final String prop = "maxBytesLocalHeap";
  verifyGreaterThanZero(maxBytesOnHeap, prop);
  final boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalHeap;
  this.maxBytesLocalHeap = maxBytesOnHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnHeap);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the Disk Tier.
 * @param maxBytesOnDisk max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalDisk(final Long maxBytesOnDisk) {
  String prop = "maxBytesLocalDisk";
  verifyGreaterThanZero(maxBytesOnDisk, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalDisk;
  this.maxBytesLocalDisk = maxBytesOnDisk;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnDisk);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the Disk Tier.
 * @param maxBytesOnDisk max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalDisk(final Long maxBytesOnDisk) {
  String prop = "maxBytesLocalDisk";
  verifyGreaterThanZero(maxBytesOnDisk, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalDisk;
  this.maxBytesLocalDisk = maxBytesOnDisk;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnDisk);
  }
}

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

/**
 * Sets the maximum amount of bytes the cache manager being configured will use on the OnHeap tier
 * @param maxBytesOnHeap amount of bytes
 */
public void setMaxBytesLocalHeap(final Long maxBytesOnHeap) {
  final String prop = "maxBytesLocalHeap";
  verifyGreaterThanZero(maxBytesOnHeap, prop);
  final boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalHeap;
  this.maxBytesLocalHeap = maxBytesOnHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnHeap);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the OffHeap Tier.
 * @param maxBytesOffHeap max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalOffHeap(final Long maxBytesOffHeap) {
  String prop = "maxBytesLocalOffHeap";
  verifyGreaterThanZero(maxBytesOffHeap, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalOffHeap;
  this.maxBytesLocalOffHeap = maxBytesOffHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOffHeap);
  }
}

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

/**
 * Sets the maximum amount of bytes the cache manager being configured will use on the OnHeap tier
 * @param maxBytesOnHeap amount of bytes
 */
public void setMaxBytesLocalHeap(final Long maxBytesOnHeap) {
  final String prop = "maxBytesLocalHeap";
  verifyGreaterThanZero(maxBytesOnHeap, prop);
  final boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalHeap;
  this.maxBytesLocalHeap = maxBytesOnHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnHeap);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the Disk Tier.
 * @param maxBytesOnDisk max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalDisk(final Long maxBytesOnDisk) {
  String prop = "maxBytesLocalDisk";
  verifyGreaterThanZero(maxBytesOnDisk, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalDisk;
  this.maxBytesLocalDisk = maxBytesOnDisk;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnDisk);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the Disk Tier.
 * @param maxBytesOnDisk max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalDisk(final Long maxBytesOnDisk) {
  String prop = "maxBytesLocalDisk";
  verifyGreaterThanZero(maxBytesOnDisk, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalDisk;
  this.maxBytesLocalDisk = maxBytesOnDisk;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnDisk);
  }
}

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

/**
 * Sets the maximum amount of bytes the cache manager being configured will use on the OnHeap tier
 * @param maxBytesOnHeap amount of bytes
 */
public void setMaxBytesLocalHeap(final Long maxBytesOnHeap) {
  final String prop = "maxBytesLocalHeap";
  verifyGreaterThanZero(maxBytesOnHeap, prop);
  final boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalHeap;
  this.maxBytesLocalHeap = maxBytesOnHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOnHeap);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the OffHeap Tier.
 * @param maxBytesOffHeap max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalOffHeap(final Long maxBytesOffHeap) {
  String prop = "maxBytesLocalOffHeap";
  verifyGreaterThanZero(maxBytesOffHeap, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalOffHeap;
  this.maxBytesLocalOffHeap = maxBytesOffHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOffHeap);
  }
}

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

/**
 * Sets maximum amount of bytes the CacheManager will use on the OffHeap Tier.
 * @param maxBytesOffHeap max bytes on disk in bytes. Needs be be greater than 0
 */
public void setMaxBytesLocalOffHeap(final Long maxBytesOffHeap) {
  String prop = "maxBytesLocalOffHeap";
  verifyGreaterThanZero(maxBytesOffHeap, prop);
  boolean publish = checkDynChange(prop);
  Long oldValue = this.maxBytesLocalOffHeap;
  this.maxBytesLocalOffHeap = maxBytesOffHeap;
  if (publish) {
    firePropertyChange(prop, oldValue, maxBytesOffHeap);
  }
}

相关文章

Configuration类方法