|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.http.nio.util.ExpandableBuffer
org.apache.http.impl.nio.reactor.SessionInputBufferImpl
@NotThreadSafe public class SessionInputBufferImpl
Default implementation of SessionInputBuffer based on
the ExpandableBuffer class.
The following parameters can be used to customize the behavior of this class:
| Field Summary |
|---|
| Fields inherited from class org.apache.http.nio.util.ExpandableBuffer |
|---|
buffer, INPUT_MODE, OUTPUT_MODE |
| Constructor Summary | |
|---|---|
SessionInputBufferImpl(int buffersize,
int linebuffersize,
ByteBufferAllocator allocator,
HttpParams params)
|
|
SessionInputBufferImpl(int buffersize,
int linebuffersize,
HttpParams params)
|
|
| Method Summary | |
|---|---|
int |
fill(ReadableByteChannel channel)
Makes an attempt to fill the buffer with data from the given ReadableByteChannel. |
int |
read()
Reads one byte from the buffer. |
int |
read(ByteBuffer dst)
Reads a sequence of bytes from this buffer into the destination buffer. |
int |
read(ByteBuffer dst,
int maxLen)
Reads a sequence of bytes from this buffer into the destination buffer, up to the given maximum limit. |
int |
read(WritableByteChannel dst)
Reads a sequence of bytes from this buffer into the destination channel. |
int |
read(WritableByteChannel dst,
int maxLen)
Reads a sequence of bytes from this buffer into the destination channel, up to the given maximum limit. |
String |
readLine(boolean endOfStream)
Attempts to transfer a complete line of characters up to a line delimiter from this buffer to a newly created string. |
boolean |
readLine(CharArrayBuffer linebuffer,
boolean endOfStream)
Attempts to transfer a complete line of characters up to a line delimiter from this buffer to the destination buffer. |
| Methods inherited from class org.apache.http.nio.util.ExpandableBuffer |
|---|
available, capacity, clear, ensureCapacity, expand, getMode, hasData, length, setInputMode, setOutputMode, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.apache.http.nio.reactor.SessionInputBuffer |
|---|
hasData, length |
| Constructor Detail |
|---|
public SessionInputBufferImpl(int buffersize,
int linebuffersize,
ByteBufferAllocator allocator,
HttpParams params)
public SessionInputBufferImpl(int buffersize,
int linebuffersize,
HttpParams params)
| Method Detail |
|---|
public int fill(ReadableByteChannel channel)
throws IOException
SessionInputBufferReadableByteChannel.
fill in interface SessionInputBufferchannel - the source channel
IOException - in case of an I/O error.public int read()
SessionInputBuffer
read in interface SessionInputBuffer
public int read(ByteBuffer dst,
int maxLen)
SessionInputBuffermaxLen value.
read in interface SessionInputBufferdst - the destination buffer.maxLen - the maximum number of bytes to be read.
public int read(ByteBuffer dst)
SessionInputBuffer
read in interface SessionInputBufferdst - the destination buffer.
public int read(WritableByteChannel dst,
int maxLen)
throws IOException
SessionInputBuffermaxLen value.
read in interface SessionInputBufferdst - the destination channel.maxLen - the maximum number of bytes to be read.
IOException - in case of an I/O error.
public int read(WritableByteChannel dst)
throws IOException
SessionInputBuffer
read in interface SessionInputBufferdst - the destination channel.
IOException - in case of an I/O error.
public boolean readLine(CharArrayBuffer linebuffer,
boolean endOfStream)
throws CharacterCodingException
SessionInputBuffertrue. The line
delimiter itself is discarded. If a complete line is not available in
the buffer, this method returns false without transferring
anything to the destination buffer. If endOfStream parameter
is set to true this method assumes the end of stream has
been reached and the content currently stored in the buffer should be
treated as a complete line.
The choice of a char encoding and line delimiter sequence is up to the specific implementations of this interface.
readLine in interface SessionInputBufferlinebuffer - the destination buffer.
true if a sequence of chars representing a complete
line has been transferred to the destination buffer, false
otherwise.
CharacterCodingException - in case a character encoding or decoding
error occurs.
public String readLine(boolean endOfStream)
throws CharacterCodingException
SessionInputBuffernull. If endOfStream parameter
is set to true this method assumes the end of stream has
been reached and the content currently stored in the buffer should be
treated as a complete line.
The choice of a char encoding and line delimiter sequence is up to the specific implementations of this interface.
readLine in interface SessionInputBuffernull otherwise.
CharacterCodingException - in case a character encoding or decoding
error occurs.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||