Java 类org.hibernate.cache.TimestampsRegion 实例源码
项目:lams
文件:LocalRegionFactoryProxy.java
@Override
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties)
throws CacheException {
return this.regionFactory.buildTimestampsRegion(regionName, properties);
}
项目:spring4-understanding
文件:LocalRegionFactoryProxy.java
@Override
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties)
throws CacheException {
return this.regionFactory.buildTimestampsRegion(regionName, properties);
}
项目:hazelcast-hibernate
文件: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-hibernate
文件: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));
}
项目:class-guard
文件:LocalRegionFactoryProxy.java
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties)
throws CacheException {
return this.regionFactory.buildTimestampsRegion(regionName, properties);
}