| Method from org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge Detail: |
public CollectionRegion buildCollectionRegion(String regionName,
Properties properties,
CacheDataDescription metadata) throws CacheException {
return new CollectionRegionAdapter( cacheProvider.buildCache( regionName, properties ), settings, metadata );
}
|
public EntityRegion buildEntityRegion(String regionName,
Properties properties,
CacheDataDescription metadata) throws CacheException {
return new EntityRegionAdapter( cacheProvider.buildCache( regionName, properties ), settings, metadata );
}
|
public QueryResultsRegion buildQueryResultsRegion(String regionName,
Properties properties) throws CacheException {
return new QueryResultsRegionAdapter( cacheProvider.buildCache( regionName, properties ), settings );
}
|
public TimestampsRegion buildTimestampsRegion(String regionName,
Properties properties) throws CacheException {
return new TimestampsRegionAdapter( cacheProvider.buildCache( regionName, properties ), settings );
}
|
public CacheProvider getCacheProvider() {
return cacheProvider;
}
|
public boolean isMinimalPutsEnabledByDefault() {
return cacheProvider.isMinimalPutsEnabledByDefault();
}
|
public long nextTimestamp() {
return cacheProvider.nextTimestamp();
}
|
public void start(Settings settings,
Properties properties) throws CacheException {
this.settings = settings;
cacheProvider.start( properties );
}
|
public void stop() {
cacheProvider.stop();
cacheProvider = null;
}
|