JAL-1648 Implemented in-memory caching for FTS (Uniprot & PDB) and Finder
[jalview.git] / src / jalview / io / cache / AppCacheI.java
1 package jalview.io.cache;
2
3 import java.util.Set;
4
5 public interface AppCacheI
6 {
7
8   public Set<String> getAllCachedItemsFor(String cacheKey);
9
10   public void updateCache(Cacheable cacheable);
11 }