|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.InputStream java.io.FilterInputStream org.apache.hadoop.io.InputBuffer
public class InputBuffer
A reusable InputStream
implementation that reads from an in-memory
buffer.
This saves memory over creating a new InputStream and ByteArrayInputStream each time data is read.
Typical usage is something like the following:
InputBuffer buffer = new InputBuffer(); while (... loop condition ...) { byte[] data = ... get data ...; int dataLength = ... get data length ...; buffer.reset(data, dataLength); ... read buffer using InputStream methods ... }
DataInputBuffer
,
DataOutput
Field Summary |
---|
Fields inherited from class java.io.FilterInputStream |
---|
in |
Constructor Summary | |
---|---|
InputBuffer()
Constructs a new empty buffer. |
Method Summary | |
---|---|
int |
getLength()
Returns the length of the input. |
int |
getPosition()
Returns the current position in the input. |
void |
reset(byte[] input,
int length)
Resets the data that the buffer reads. |
void |
reset(byte[] input,
int start,
int length)
Resets the data that the buffer reads. |
Methods inherited from class java.io.FilterInputStream |
---|
available, close, mark, markSupported, read, read, read, reset, skip |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public InputBuffer()
Method Detail |
---|
public void reset(byte[] input, int length)
public void reset(byte[] input, int start, int length)
public int getPosition()
public int getLength()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |