public static interface CachePersistenceHelper.Visitor
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
visitCacheEntry(long lOldCacheId, Binary binKey, Binary binValue)
Apply the visitor to the specified cache entry (key-value pair). 
 | 
boolean | 
visitIndex(long lOldCacheId, Binary binExtractor, Binary binComparator)
Apply the visitor to the specified cache index. 
 | 
boolean | 
visitListener(long lOldCacheId, Binary binKey, long lListenerId, boolean fLite)
Apply the visitor to the specified cache entry listener. 
 | 
boolean | 
visitLock(long lOldCacheId, Binary binKey, long lHolderId, long lHolderThreadId)
Apply the visitor to the specified cache entry lock. 
 | 
boolean | 
visitTrigger(long lOldCacheId, Binary binTrigger)
Apply the visitor to the specified trigger. 
 | 
boolean visitCacheEntry(long lOldCacheId,
                        Binary binKey,
                        Binary binValue)
lOldCacheId - the persisted cache-idbinKey - the cache keybinValue - the cache value
boolean visitListener(long lOldCacheId,
                      Binary binKey,
                      long lListenerId,
                      boolean fLite)
lOldCacheId - the persisted cache-idbinKey - the cache keylListenerId - the service-unique identifier of the listening memberfLite - true iff the listener should receive "lite" events
boolean visitLock(long lOldCacheId,
                  Binary binKey,
                  long lHolderId,
                  long lHolderThreadId)
lOldCacheId - the persisted cache-idbinKey - the cache keylHolderId - the service-unique identifier of the lock holderlHolderThreadId - the thread-id of the lock holder
boolean visitIndex(long lOldCacheId,
                   Binary binExtractor,
                   Binary binComparator)
lOldCacheId - the persisted cache-idbinExtractor - the index extractorbinComparator - the index comparator
boolean visitTrigger(long lOldCacheId,
                     Binary binTrigger)
lOldCacheId - the persisted cache-idbinTrigger - the trigger