Java 类org.hibernate.cache.spi.TimestampsRegion 实例源码

项目:ignite    文件:HibernateRegionFactory.java   
/** {@inheritDoc} */
@Override public TimestampsRegion buildTimestampsRegion(String regionName, Properties props) throws CacheException {
    return new HibernateTimestampsRegion(this,
        regionName,
        accessStgyFactory.node(),
        accessStgyFactory.regionCache(regionName));
}
项目:ignite    文件:HibernateRegionFactory.java   
/** {@inheritDoc} */
@Override public TimestampsRegion buildTimestampsRegion(String regionName, Properties props) throws CacheException {
    return new HibernateTimestampsRegion(this,
        regionName,
        accessStgyFactory.node(),
        accessStgyFactory.regionCache(regionName));
}
项目:lams    文件:NoCachingRegionFactory.java   
@Override
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
    throw new NoCacheRegionFactoryAvailableException();
}
项目:hazelcast-hibernate5    文件:HazelcastCacheRegionFactory.java   
@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));
}
项目:hazelcast-hibernate5    文件:HazelcastLocalCacheRegionFactory.java   
@Override
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
        throws CacheException {
    return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties,
            new TimestampsRegionCache(regionName, instance));
}
项目:hazelcast-hibernate    文件:HazelcastCacheRegionFactory.java   
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
        throws CacheException {
    return new HazelcastTimestampsRegion<IMapRegionCache>(instance, regionName, properties,
            new IMapRegionCache(regionName, instance, properties, null));
}
项目:hazelcast-hibernate    文件:HazelcastLocalCacheRegionFactory.java   
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties)
        throws CacheException {
    return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties,
            new TimestampsRegionCache(regionName, instance));
}
项目:hibernate-memcached    文件:AbstractMemcachedRegionFactory.java   
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException {
    return new MemcachedTimestampsRegion(getCache(regionName), properties);
}
项目:TayzGrid    文件:TayzGridRegionFactory.java   
/**
 * 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);
}