/** {@inheritDoc} */ @Override public TimestampsRegion buildTimestampsRegion(String regionName, Properties props) throws CacheException { return new HibernateTimestampsRegion(this, regionName, accessStgyFactory.node(), accessStgyFactory.regionCache(regionName)); }
@Override public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException { throw new NoCacheRegionFactoryAvailableException(); }
@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)); }
@Override public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties) throws CacheException { return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties, new TimestampsRegionCache(regionName, instance)); }
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties) throws CacheException { return new HazelcastTimestampsRegion<IMapRegionCache>(instance, regionName, properties, new IMapRegionCache(regionName, instance, properties, null)); }
public TimestampsRegion buildTimestampsRegion(final String regionName, final Properties properties) throws CacheException { return new HazelcastTimestampsRegion<LocalRegionCache>(instance, regionName, properties, new TimestampsRegionCache(regionName, instance)); }
public TimestampsRegion buildTimestampsRegion(String regionName, Properties properties) throws CacheException { return new MemcachedTimestampsRegion(getCache(regionName), properties); }
/** * 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); }