org.opendoors.cache
Interface UpdateableCache

All Superinterfaces:
Cache
All Known Implementing Classes:
CacheImpl

public interface UpdateableCache
extends Cache

Some cache implementations will expose an explicit udpate method allowing clients to perform pending updates to the cache which brings the cache up-to-date with recent mutations to the cache.


Method Summary
 void update()
          Updates the cache.
 
Methods inherited from interface org.opendoors.cache.Cache
get, invalidate, invalidateAll, keys, put, values
 

Method Detail

update

public void update()
Updates the cache.

Upon completion, the cache is up to date w/respect to all pending updates.