Uses of Class
org.apache.lucene.store.IndexOutput
-
Packages that use IndexOutput Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.store Binary i/o API, used for all index data.org.apache.lucene.util Some utility classes. -
-
Uses of IndexOutput in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type IndexOutput Modifier and Type Method Description voidFieldInfos. write(IndexOutput output) -
Uses of IndexOutput in org.apache.lucene.store
Subclasses of IndexOutput in org.apache.lucene.store Modifier and Type Class Description classBufferedIndexOutputBase implementation class for bufferedIndexOutput.classChecksumIndexOutputWrites bytes through to a primary IndexOutput, computing checksum.protected static classFSDirectory.FSIndexOutputclassMockIndexOutputWrapperUsed by MockRAMDirectory to create an output stream that will throw an IOException on fake disk full, track max disk space actually used, and maybe throw random IOExceptions.classRAMOutputStreamA memory-residentIndexOutputimplementation.Methods in org.apache.lucene.store that return IndexOutput Modifier and Type Method Description IndexOutputDirectIOLinuxDirectory. createOutput(String name)abstract IndexOutputDirectory. createOutput(String name)Creates a new, empty file in the directory with the given name.IndexOutputFileSwitchDirectory. createOutput(String name)IndexOutputFSDirectory. createOutput(String name)Creates an IndexOutput for the file with the given name.IndexOutputMockDirectoryWrapper. createOutput(String name)IndexOutputNRTCachingDirectory. createOutput(String name)IndexOutputRAMDirectory. createOutput(String name)Creates a new, empty file in the directory with the given name.Methods in org.apache.lucene.store with parameters of type IndexOutput Modifier and Type Method Description voidBufferedIndexInput. copyBytes(IndexOutput out, long numBytes)voidIndexInput. copyBytes(IndexOutput out, long numBytes)CopiesnumBytesbytes to the givenIndexOutput.voidMockIndexInputWrapper. copyBytes(IndexOutput out, long numBytes)voidRAMInputStream. copyBytes(IndexOutput out, long numBytes)voidSimpleFSDirectory.SimpleFSIndexInput. copyBytes(IndexOutput out, long numBytes)protected intBufferedIndexInput. flushBuffer(IndexOutput out, long numBytes)Flushes the in-memory bufer to the given output, copying at mostnumBytes.voidMockDirectoryWrapper. removeIndexOutput(IndexOutput out, String name)voidRAMOutputStream. writeTo(IndexOutput out)Copy the current contents of this buffer to the named output.Constructors in org.apache.lucene.store with parameters of type IndexOutput Constructor Description ChecksumIndexOutput(IndexOutput main)MockIndexOutputWrapper(MockDirectoryWrapper dir, IndexOutput delegate, String name)Construct an empty output buffer. -
Uses of IndexOutput in org.apache.lucene.util
Subclasses of IndexOutput in org.apache.lucene.util Modifier and Type Class Description classThrottledIndexOutputIntentionally slow IndexOutput for testing.Methods in org.apache.lucene.util with parameters of type IndexOutput Modifier and Type Method Description ThrottledIndexOutputThrottledIndexOutput. newFromDelegate(IndexOutput output)Constructors in org.apache.lucene.util with parameters of type IndexOutput Constructor Description ThrottledIndexOutput(int bytesPerSecond, long delays, int minBytesWritten, IndexOutput delegate)ThrottledIndexOutput(int bytesPerSecond, long flushDelayMillis, long closeDelayMillis, long seekDelayMillis, long minBytesWritten, IndexOutput delegate)ThrottledIndexOutput(int bytesPerSecond, long delayInMillis, IndexOutput delegate)
-