1 25 26 package org.objectweb.perseus.cache.api; 27 28 42 public interface CacheManager { 43 44 59 CacheEntry bind(Object id, Object object) throws CacheException; 60 61 74 CacheEntry lookup(Object id); 75 76 86 void fix(CacheEntry ce) throws CacheException; 87 88 99 void unfix(CacheEntry ce) throws CacheException; 100 101 109 void touch(CacheEntry entry) throws CacheException; 110 } 111 | Popular Tags |