Package org.aspectj.weaver.tools.cache
Interface CacheBacking
-
- All Known Implementing Classes:
AbstractCacheBacking,AbstractFileCacheBacking,AbstractIndexedFileCacheBacking,AsynchronousFileCacheBacking,DefaultFileCacheBacking,FlatFileCacheBacking,ZippedFileCacheBacking
public interface CacheBacking
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()CachedClassEntryget(CachedClassReference ref, byte[] originalBytes)String[]getKeys(String regex)voidput(CachedClassEntry entry, byte[] originalBytes)voidremove(CachedClassReference ref)
-
-
-
Method Detail
-
remove
void remove(CachedClassReference ref)
-
clear
void clear()
-
get
CachedClassEntry get(CachedClassReference ref, byte[] originalBytes)
-
put
void put(CachedClassEntry entry, byte[] originalBytes)
-
-