Package org.infinispan.lucene
Interface KeyVisitor<T>
-
public interface KeyVisitor<T>All objects being used as keys to store entries by the Lucene Directory implementIndexScopedKeywhich 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 Tvisit(ChunkCacheKey chunkCacheKey)Tvisit(FileCacheKey fileCacheKey)Tvisit(FileListCacheKey fileListCacheKey)Tvisit(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
-
-