org.jipijapa.event.impl.internal.Notification.stopCache()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(76)

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

Notification.stopCache介绍

[英]Stop cache
[中]停止缓存

代码示例

代码示例来源:origin: wildfly/wildfly

@Override
public void stop() {
  Notification.stopCache(Classification.INFINISPAN, this.wrapper);
}

代码示例来源:origin: wildfly/wildfly

@Override
public void stop() {
  Notification.stopCache(Classification.INFINISPAN, this.wrapper);
}

代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-3

@Override
protected void stopCacheManager() {
  // stop the private cache
  Notification.stopCache(Classification.INFINISPAN, wrapper, false );
}

代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-1

@Override
protected void stopCacheManager() {
  // stop the private cache
  Notification.stopCache(Classification.INFINISPAN, wrapper, false );
}

代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-3

/**
 * Do not attempt to stop our cache manager because it wasn't created by this region factory.
 * Base class stop() will call the base stopCacheRegions()
 */
@Override
protected void stopCacheManager() {
  // notify that the cache is not used but skip the stop since its shared for all jpa applications.
  Notification.stopCache(Classification.INFINISPAN, wrapper, true);
}

代码示例来源:origin: org.jipijapa/jipijapa-hibernate4-1

/**
 * Do not attempt to stop our cache manager because it wasn't created by this region factory.
 * Base class stop() will call the base stopCacheRegions()
 */
@Override
protected void stopCacheManager() {
  // notify that the cache is not used but skip the stop since its shared for all jpa applications.
  Notification.stopCache(Classification.INFINISPAN, wrapper, true);
}

代码示例来源:origin: org.jboss.eap/jipijapa-hibernate5-3

@Override
public void stop() {
  Notification.stopCache(Classification.INFINISPAN, this.wrapper);
}

代码示例来源:origin: org.jboss.eap/jipijapa-hibernate5

@Override
public void stop() {
  Notification.stopCache(Classification.INFINISPAN, this.wrapper);
}

相关文章