List of usage examples for org.apache.lucene.store BufferedIndexInput wrap
public static BufferedIndexInput wrap(String sliceDescription, IndexInput other, long offset, long length)
From source file:com.senseidb.clue.util.CustomBufferedIndexInput.java
License:Apache License
@Override public IndexInput slice(String sliceDescription, long offset, long length) throws IOException { return BufferedIndexInput.wrap(sliceDescription, this, offset, length); }