本文整理汇总了Java中org.hibernate.cache.spi.TimestampsRegion类的典型用法代码示例。如果您正苦于以下问题:Java TimestampsRegion类的具体用法?Java TimestampsRegion怎么用?Java TimestampsRegion使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TimestampsRegion类属于org.hibernate.cache.spi包,在下文中一共展示了TimestampsRegion类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
/** {@inheritDoc} */
@Override public TimestampsRegion buildTimestampsRegion(String regionName, Properties props) throws CacheException {
return new HibernateTimestampsRegion(this,
regionName,
accessStgyFactory.node(),
accessStgyFactory.regionCache(regionName));
}
示例2: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
@Override
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
throw new NoCacheRegionFactoryAvailableException();
}
示例3: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
@Override
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
throws CacheException {
return new HazelcastTimestampsRegion<IMapRegionCache>(instance, regionName, properties,
new IMapRegionCache(regionName, instance, properties, null));
}
示例4: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
@Override
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
throws CacheException {
return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties,
new TimestampsRegionCache(regionName, instance));
}
示例5: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
throws CacheException {
return new HazelcastTimestampsRegion<IMapRegionCache>(instance, regionName, properties,
new IMapRegionCache(regionName, instance, properties, null));
}
示例6: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
throws CacheException {
return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties,
new TimestampsRegionCache(regionName, instance));
}
示例7: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
return new MemcachedTimestampsRegion(getCache(regionName), properties);
}
示例8: buildTimestampsRegion
import org.hibernate.cache.spi.TimestampsRegion; //导入依赖的package包/类
/**
* Build a cache region specialized for storing update-timestamps data.
*
* @param regionName The name of the region.
* @param properties Configuration properties.
*
* @return The built region
*
* @throws CacheException Indicates problems building the region.
*/
@Override
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
return new TayzGridTimestampsRegion(regionName, properties);
}