Package org.infinispan.lucene
Interface KeyVisitor<T>
-
public interface KeyVisitor<T>
All objects being used as keys to store entries by the Lucene Directory implementIndexScopedKey
which enforces visitability with aKeyVisitor
. Various components use this to visit each key.- Since:
- 5.2
- Author:
- Sanne Grinovero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visit(ChunkCacheKey chunkCacheKey)
T
visit(FileCacheKey fileCacheKey)
T
visit(FileListCacheKey fileListCacheKey)
T
visit(FileReadLockKey fileReadLockKey)
-
-
-
Method Detail
-
visit
T visit(FileListCacheKey fileListCacheKey) throws Exception
- Throws:
Exception
-
visit
T visit(ChunkCacheKey chunkCacheKey) throws Exception
- Throws:
Exception
-
visit
T visit(FileCacheKey fileCacheKey) throws Exception
- Throws:
Exception
-
visit
T visit(FileReadLockKey fileReadLockKey) throws Exception
- Throws:
Exception
-
-