示例#1
0
 public void clear() throws CacheException {
   try {
     cache.remove(regionFqn);
   } catch (Exception e) {
     throw new CacheException(e);
   }
 }
示例#2
0
 public void remove(Object key) throws CacheException {
   try {
     cache.remove(new Fqn(regionFqn, key));
   } catch (Exception e) {
     throw new CacheException(e);
   }
 }