Uses of Interface
org.simpleframework.common.buffer.Buffer
-
Packages that use Buffer Package Description org.simpleframework.common.buffer org.simpleframework.http.message -
-
Uses of Buffer in org.simpleframework.common.buffer
Classes in org.simpleframework.common.buffer that implement Buffer Modifier and Type Class Description classArrayBufferTheArrayBufferis intended to be a general purpose byte buffer that stores bytes in an single internal byte array.private classArrayBuffer.SegmentASegmentrepresents a segment within a buffer.classBufferAllocatorTheBufferAllocatorobject is used to provide a means to allocate buffers using a single underlying buffer.(package private) classFileBufferTheFileBufferobject is used to create a buffer which will write the appended data to an underlying file.private classFileBuffer.SegmentTheSegmentobject is used to create a segment of the parent buffer.Fields in org.simpleframework.common.buffer declared as Buffer Modifier and Type Field Description private BufferBufferAllocator. bufferThis is the underlying buffer all other buffers are within.private BufferArrayBuffer.Segment. parentThis is the parent buffer which is used for collecting data.private BufferFileBuffer.Segment. parentThis is the parent buffer that bytes are to be appended to.Methods in org.simpleframework.common.buffer that return Buffer Modifier and Type Method Description BufferAllocator. allocate()This method is used to allocate a default buffer.BufferAllocator. allocate(long size)This method is used to allocate a default buffer.BufferArrayAllocator. allocate()This method is used to allocate a default buffer.BufferArrayAllocator. allocate(long size)This method is used to allocate a default buffer.BufferArrayBuffer. allocate()This method is used to allocate a segment of this buffer as a separate buffer object.BufferArrayBuffer.Segment. allocate()This method is used to allocate a segment of this buffer as a separate buffer object.BufferBuffer. allocate()This method is used to allocate a segment of this buffer as a separate buffer object.BufferBufferAllocator. allocate()This method is used to allocate a default buffer.BufferBufferAllocator. allocate(long size)This method is used to allocate a default buffer.BufferFileAllocator. allocate()This will allocate a file buffer which will write data for the buffer to a file.BufferFileAllocator. allocate(long size)This will allocate a file buffer which will write data for the buffer to a file.BufferFileBuffer. allocate()This is used to allocate a segment within this buffer.BufferFileBuffer.Segment. allocate()This is used to allocate a segment within this buffer.BufferFilterAllocator. allocate()This method is used to allocate a default buffer.BufferFilterAllocator. allocate(long size)This method is used to allocate a default buffer.BufferArrayBuffer. append(byte[] array)This method is used to append bytes to the end of the buffer.BufferArrayBuffer. append(byte[] array, int off, int size)This method is used to append bytes to the end of the buffer.BufferArrayBuffer.Segment. append(byte[] array)This method is used to append bytes to the end of the buffer.BufferArrayBuffer.Segment. append(byte[] array, int off, int size)This method is used to append bytes to the end of the buffer.BufferBuffer. append(byte[] array)This method is used to append bytes to the end of the buffer.BufferBuffer. append(byte[] array, int off, int len)This method is used to append bytes to the end of the buffer.BufferBufferAllocator. append(byte[] array)This method is used to append bytes to the end of the buffer.BufferBufferAllocator. append(byte[] array, int off, int size)This method is used to append bytes to the end of the buffer.BufferFileBuffer. append(byte[] array)This is used to append the specified data to the underlying file.BufferFileBuffer. append(byte[] array, int off, int size)This is used to append the specified data to the underlying file.BufferFileBuffer.Segment. append(byte[] array)This is used to append the specified data to the underlying file.BufferFileBuffer.Segment. append(byte[] array, int off, int size)This is used to append the specified data to the underlying file.Constructors in org.simpleframework.common.buffer with parameters of type Buffer Constructor Description Segment(Buffer parent, int start)Constructor for theSegmentobject.Segment(Buffer parent, long first)Constructor for theSegmentobject. -
Uses of Buffer in org.simpleframework.http.message
Fields in org.simpleframework.http.message declared as Buffer Modifier and Type Field Description private BufferBoundaryConsumer. bufferThis is used to consume the contents of the consumed buffer.private BufferBufferBody. bufferThis is usd to hold the bytes representing the HTTP body.private BufferChunkedConsumer. bufferThis is the internal buffer used to capture the body read.private BufferContentConsumer. bufferThis is the internal buffer used to house the part body.private BufferFixedLengthConsumer. bufferThis is the internal buffer used to accumulate the body.private BufferPartHeaderConsumer. bufferThis is the internal buffer used to store the header.private BufferTokenConsumer. bufferThis is used to append the contents of consumed token.Constructors in org.simpleframework.http.message with parameters of type Buffer Constructor Description BufferBody(Buffer buffer)Constructor for theBufferBodyobject.BufferBody(Buffer buffer, PartSeries series)Constructor for theBufferBodyobject.BufferPart(Segment segment, Buffer buffer)Constructor for theBufferPartobject.
-