|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.lucene.store.DataOutput
org.apache.lucene.store.IndexOutput
org.apache.lucene.store.BufferedIndexOutput
public abstract class BufferedIndexOutput
Base implementation class for buffered IndexOutput.
| Field Summary | |
|---|---|
static int |
DEFAULT_BUFFER_SIZE
The default buffer size in bytes (16384). |
| Constructor Summary | |
|---|---|
BufferedIndexOutput()
Creates a new BufferedIndexOutput with the default buffer size
(16384 bytes see DEFAULT_BUFFER_SIZE) |
|
BufferedIndexOutput(int bufferSize)
Creates a new BufferedIndexOutput with the given buffer size. |
|
| Method Summary | |
|---|---|
void |
close()
Closes this stream to further operations. |
void |
flush()
Forces any buffered output to be written. |
protected abstract void |
flushBuffer(byte[] b,
int offset,
int len)
Expert: implements buffer write. |
long |
getFilePointer()
Returns the current position in this file, where the next write will occur. |
abstract long |
length()
The number of bytes in the file. |
void |
seek(long pos)
Sets current position in this file, where the next write will occur. |
void |
writeByte(byte b)
Writes a single byte. |
void |
writeBytes(byte[] b,
int offset,
int length)
Writes an array of bytes. |
| Methods inherited from class org.apache.lucene.store.IndexOutput |
|---|
setLength |
| Methods inherited from class org.apache.lucene.store.DataOutput |
|---|
copyBytes, writeBytes, writeInt, writeLong, writeShort, writeString, writeStringSet, writeStringStringMap, writeVInt, writeVLong |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int DEFAULT_BUFFER_SIZE
| Constructor Detail |
|---|
public BufferedIndexOutput()
BufferedIndexOutput with the default buffer size
(16384 bytes see DEFAULT_BUFFER_SIZE)
public BufferedIndexOutput(int bufferSize)
BufferedIndexOutput with the given buffer size.
bufferSize - the buffer size in bytes used to buffer writes internally.
IllegalArgumentException - if the given buffer size is less or equal to 0| Method Detail |
|---|
public void writeByte(byte b)
throws IOException
DataOutputThe most primitive data type is an eight-bit byte. Files are accessed as sequences of bytes. All other data types are defined as sequences of bytes, so file formats are byte-order independent.
writeByte in class DataOutputIOExceptionDataInput.readByte()
public void writeBytes(byte[] b,
int offset,
int length)
throws IOException
DataOutput
writeBytes in class DataOutputb - the bytes to writeoffset - the offset in the byte arraylength - the number of bytes to write
IOExceptionDataInput.readBytes(byte[],int,int)
public void flush()
throws IOException
IndexOutput
flush in class IndexOutputIOException
protected abstract void flushBuffer(byte[] b,
int offset,
int len)
throws IOException
b - the bytes to writeoffset - the offset in the byte arraylen - the number of bytes to write
IOException
public void close()
throws IOException
IndexOutput
close in interface Closeableclose in class IndexOutputIOExceptionpublic long getFilePointer()
IndexOutput
getFilePointer in class IndexOutputIndexOutput.seek(long)
public void seek(long pos)
throws IOException
IndexOutput
seek in class IndexOutputIOExceptionIndexOutput.getFilePointer()
public abstract long length()
throws IOException
IndexOutput
length in class IndexOutputIOException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||