org.elasticsearch.common.io.stream
Class LZFStreamOutput
java.lang.Object
java.io.OutputStream
org.elasticsearch.common.io.stream.StreamOutput
org.elasticsearch.common.io.stream.LZFStreamOutput
- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable
public class LZFStreamOutput
- extends StreamOutput
| Methods inherited from class org.elasticsearch.common.io.stream.StreamOutput |
write, writeBoolean, writeBytes, writeBytes, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF, writeVInt, writeVLong |
| Methods inherited from class java.io.OutputStream |
write |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LZFStreamOutput
public LZFStreamOutput(StreamOutput out)
write
public void write(int singleByte)
throws java.io.IOException
- Overrides:
write in class StreamOutput
- Throws:
java.io.IOException
writeByte
public void writeByte(byte b)
throws java.io.IOException
- Description copied from class:
StreamOutput
- Writes a single byte.
- Specified by:
writeByte in class StreamOutput
- Throws:
java.io.IOException
writeBytes
public void writeBytes(byte[] b,
int offset,
int length)
throws java.io.IOException
- Description copied from class:
StreamOutput
- Writes an array of bytes.
- Specified by:
writeBytes in class StreamOutput
- Parameters:
b - the bytes to writeoffset - the offset in the byte arraylength - the number of bytes to write
- Throws:
java.io.IOException
flush
public void flush()
throws java.io.IOException
- Description copied from class:
StreamOutput
- Forces any buffered output to be written.
- Specified by:
flush in interface java.io.Flushable- Specified by:
flush in class StreamOutput
- Throws:
java.io.IOException
close
public void close()
throws java.io.IOException
- Description copied from class:
StreamOutput
- Closes this stream to further operations.
- Specified by:
close in interface java.io.Closeable- Specified by:
close in class StreamOutput
- Throws:
java.io.IOException
reset
public void reset()
throws java.io.IOException
- Specified by:
reset in class StreamOutput
- Throws:
java.io.IOException
reset
public void reset(StreamOutput out)
throws java.io.IOException
- Throws:
java.io.IOException
wrappedOut
public StreamOutput wrappedOut()