Java org.apache.http.nio.reactor SessionOutputBuffer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.http.nio.reactor SessionOutputBuffer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.http.nio.reactor SessionOutputBuffer.

The text is from its open source code.

Method

intflush(WritableByteChannel channel)
Makes an attempt to flush the content of this buffer to the given destination WritableByteChannel .
booleanhasData()
Determines if the buffer contains data.
intlength()
Returns the length of this buffer.
voidwrite(ByteBuffer src)
Copies content of the source buffer into this buffer.
voidwrite(ReadableByteChannel src)
Reads a sequence of bytes from the source channel into this buffer.
voidwriteLine(CharArrayBuffer src)
Copies content of the source buffer into this buffer as one line of text including a line delimiter.
voidwriteLine(String s)
Copies content of the given string into this buffer as one line of text including a line delimiter.