Interface JavaWriteCache
- All Known Implementing Classes:
DummyCache,JavaWriteCacheImpl
public interface JavaWriteCache
-
Method Summary
Modifier and TypeMethodDescriptionvoidcopyFromPrevious(String key) Copy a cached entry from the previous cache to the new one.voidSave a new entry in the cache.voidwrite(String key, InputStream data) Save a new entry in the cache.
-
Method Details
-
write
Save a new entry in the cache. The stream will be consumed immediately. -
write
Save a new entry in the cache. -
copyFromPrevious
Copy a cached entry from the previous cache to the new one.
-