Java Code Examples for org.apache.lucene.store.BufferedIndexInput#wrap()
The following examples show how to use
org.apache.lucene.store.BufferedIndexInput#wrap() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LZFCompressedIndexInput.java From Elasticsearch with Apache License 2.0 | 4 votes |
@Override public IndexInput slice(String description, long offset, long length) throws IOException { return BufferedIndexInput.wrap(description, this, offset, length); }
Example 2
Source File: CustomBufferedIndexInput.java From lucene-solr with Apache License 2.0 | 4 votes |
@Override public IndexInput slice(String sliceDescription, long offset, long length) throws IOException { return BufferedIndexInput.wrap(sliceDescription, this, offset, length); }
Example 3
Source File: CustomBufferedIndexInput.java From clue with Apache License 2.0 | 4 votes |
@Override public IndexInput slice(String sliceDescription, long offset, long length) throws IOException { return BufferedIndexInput.wrap(sliceDescription, this, offset, length); }