Interface GeneTestedInCache
-
- All Known Implementing Classes:
GeneTestedInCacheImpl
public interface GeneTestedInCache
Cache of the 'tested-in' information for genes. As new analyses are done, this cache must be invalidated but otherwise can speed up the post-processing steps.- Author:
- paul
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cache(Map<Long,GeneCoexpressionTestedIn> idMap)
void
cacheTestedIn(GeneCoexpressionTestedIn testedIn)
void
clearCache()
boolean
contains(Long queryGeneId)
GeneCoexpressionTestedIn
get(Long geneId)
void
remove(Long id)
-
-
-
Method Detail
-
cacheTestedIn
void cacheTestedIn(GeneCoexpressionTestedIn testedIn)
-
clearCache
void clearCache()
-
get
GeneCoexpressionTestedIn get(Long geneId)
-
cache
void cache(Map<Long,GeneCoexpressionTestedIn> idMap)
-
contains
boolean contains(Long queryGeneId)
-
remove
void remove(Long id)
-
-