Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

76994: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      70127: MNT-9882 - refactoring of caches


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@77833 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-07-23 12:01:01 +00:00
parent c5cb3ce87a
commit 4f2d6e08bb
14 changed files with 361 additions and 1444 deletions

View File

@@ -40,12 +40,12 @@ public interface RefreshableCache <T>
*/
public void refresh();
/**
* Register to be informed when the cache is updated in the background.
*
* Note: it is up to the implementation to provide any transactional wrapping.
* Transactional wrapping is not required to invalidate a shared cache entry directly via a transactional cache
* @param listener
*/
void register(RefreshableCacheListener listener);
// /**
// * Register to be informed when the cache is updated in the background.
// *
// * Note: it is up to the implementation to provide any transactional wrapping.
// * Transactional wrapping is not required to invalidate a shared cache entry directly via a transactional cache
// * @param listener
// */
// void register(RefreshableCacheListener listener);
}