Interface ContentInputBuffer
-
- All Known Implementing Classes:
SharedInputBuffer
public interface ContentInputBufferGeneric content input buffer.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intlength()Return length data stored in the bufferintread()Reads one byte from this buffer.intread(byte[] b, int off, int len)Reads up tolenbytes of data from this buffer into an array of bytes.voidreset()Resets the buffer by clearing its state and stored content.
-
-
-
Method Detail
-
length
int length()
Return length data stored in the buffer- Returns:
- data length
-
reset
void reset()
Resets the buffer by clearing its state and stored content.
-
read
int read(byte[] b, int off, int len) throws java.io.IOExceptionReads up tolenbytes of data from this buffer into an array of bytes. The exact number of bytes read depends how many bytes are stored in the buffer.If
offis negative, orlenis negative, oroff+lenis greater than the length of the arrayb, this method can throw a runtime exception. The exact type of runtime exception thrown by this method depends on implementation. This method returns-1if the end of content stream has been reached.- Parameters:
b- the buffer into which the data is read.off- the start offset in arraybat which the data is written.len- the maximum number of bytes to read.- Returns:
- the total number of bytes read into the buffer, or
-1if there is no more data because the end of the stream has been reached. - Throws:
java.io.IOException- if an I/O error occurs.
-
read
int read() throws java.io.IOException
Reads one byte from this buffer. If the buffer is empty this method can throw a runtime exception. The exact type of runtime exception thrown by this method depends on implementation. This method returns-1if the end of content stream has been reached.- Returns:
- one byte
- Throws:
java.io.IOException
-
-