1 package org.hibernate.cache; 3 4 import java.util.Properties ; 5 6 11 public interface CacheProvider { 12 13 20 public Cache buildCache(String regionName, Properties properties) throws CacheException; 21 22 25 public long nextTimestamp(); 26 27 33 public void start(Properties properties) throws CacheException; 34 35 39 public void stop(); 40 41 public boolean isMinimalPutsEnabledByDefault(); 42 43 } 44 | Popular Tags |