
org.infinispan.lucene.impl.DirectoryExtensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-embedded-query
Show all versions of infinispan-embedded-query
Infinispan Embedded Query All-in-One module
The newest version!
package org.infinispan.lucene.impl;
import org.infinispan.Cache;
/**
* Some additional methods we add to our Directory implementations,
* mostly for reporting and testing reasons.
*
* @author Sanne Grinovero (C) 2013 Red Hat Inc.
*/
public interface DirectoryExtensions {
String getIndexName();
//Was part of the Directory contract for Lucene 2.9.x
void renameFile(final String from, final String to);
int getChunkSize();
Cache getMetadataCache();
Cache getDataCache();
void forceUnlock(String lockName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy