org.apache.lucene.store.DirectoryWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compass Show documentation
Show all versions of compass Show documentation
Compass Search Engine Framework
package org.apache.lucene.store;
import java.io.IOException;
/**
* Allows to get the native directory implementations
*
* @author kimchy
*/
public interface DirectoryWrapper {
Directory getWrappedDirectory();
void clearWrapper() throws IOException;
}