Uses of Interface
org.simpleframework.common.buffer.Allocator
Packages that use Allocator
Package
Description
-
Uses of Allocator in org.simpleframework.common.buffer
Classes in org.simpleframework.common.buffer that implement AllocatorModifier and TypeClassDescriptionclassTheArrayAllocatorobject is used to provide a means to allocate buffers using a single byte array.classTheBufferAllocatorobject is used to provide a means to allocate buffers using a single underlying buffer.classTheFileAllocatorobject is used to create buffers that can be written to the file system.classTheFilterAllocatorobject is used to provide a means to provide a general set of constraints around buffer allocation.Fields in org.simpleframework.common.buffer declared as AllocatorModifier and TypeFieldDescriptionprotected AllocatorFilterAllocator.sourceThis is the allocator the underlying buffer is allocated with.Constructors in org.simpleframework.common.buffer with parameters of type AllocatorModifierConstructorDescriptionBufferAllocator(Allocator source) Constructor for theBufferAllocatorobject.BufferAllocator(Allocator source, long capacity) Constructor for theBufferAllocatorobject.BufferAllocator(Allocator source, long capacity, long limit) Constructor for theBufferAllocatorobject.FilterAllocator(Allocator source) Constructor for theFilterAllocatorobject.FilterAllocator(Allocator source, long capacity) Constructor for theFilterAllocatorobject.FilterAllocator(Allocator source, long capacity, long limit) Constructor for theFilterAllocatorobject. -
Uses of Allocator in org.simpleframework.http.core
Fields in org.simpleframework.http.core declared as AllocatorModifier and TypeFieldDescriptionprivate final AllocatorContainerController.allocatorThis is the allocator used to create the buffers needed.Constructors in org.simpleframework.http.core with parameters of type AllocatorModifierConstructorDescriptionContainerController(Container container, Allocator allocator, int count, int select) Constructor for theContainerControllerobject.ContainerSocketProcessor(Container container, Allocator allocator) Constructor for theContainerSocketProcessorobject.ContainerSocketProcessor(Container container, Allocator allocator, int count) Constructor for theContainerSocketProcessorobject.ContainerSocketProcessor(Container container, Allocator allocator, int count, int select) Constructor for theContainerSocketProcessorobject.ContainerTransportProcessor(Container container, Allocator allocator, int count) Constructor for theContainerProcessorobject.ContainerTransportProcessor(Container container, Allocator allocator, int count, int select) Constructor for theContainerProcessorobject.RequestCollector(Allocator allocator, Channel channel) TheRequestCollectorobject used to collect the data from the underlying transport. -
Uses of Allocator in org.simpleframework.http.message
Fields in org.simpleframework.http.message declared as AllocatorModifier and TypeFieldDescriptionprivate AllocatorBoundaryConsumer.allocatorThis is used to allocate a buffer for for the boundary.private AllocatorChunkedConsumer.allocatorThis is used to create the internal buffer for the body.protected AllocatorConsumerFactory.allocatorThis is used to allocate the memory associated with the body.private AllocatorContentConsumer.allocatorThis is used to allocate the internal buffer when required.private AllocatorFixedLengthConsumer.allocatorThis is the allocator used to allocate the buffer used.private final AllocatorPartEntryFactory.allocatorThis is used to allocate the buffers used by the entry.private AllocatorPartHeaderConsumer.allocatorThis is used to allocate the internal buffer for the header.private AllocatorTokenConsumer.allocatorThis is used to allocate a buffer to append the contents.Constructors in org.simpleframework.http.message with parameters of type AllocatorModifierConstructorDescriptionBoundaryConsumer(Allocator allocator, byte[] boundary) Constructor for theBoundaryConsumerobject.ChunkedConsumer(Allocator allocator) Constructor for theChunkedConsumerobject.privateChunkedConsumer(Allocator allocator, int chunk) Constructor for theChunkedConsumerobject.ConsumerFactory(Allocator allocator, Segment segment) Constructor for theConsumerFactoryobject.ContentConsumer(Allocator allocator, Segment segment, PartSeries series, byte[] boundary) Constructor for theContentConsumerobject.EntityConsumer(Allocator allocator, Channel channel) Constructor for theEntityConsumerobject.FileUploadConsumer(Allocator allocator, byte[] boundary, long length) Constructor for theFileUploadConsumerobject.FixedLengthConsumer(Allocator allocator, long limit) Constructor for theFixedLengthConsumerobject.PartBodyConsumer(Allocator allocator, Segment segment, byte[] boundary) Constructor for thePartBodyConsumerobject.PartBodyConsumer(Allocator allocator, Segment segment, PartSeries series, byte[] boundary) Constructor for thePartBodyConsumerobject.PartConsumer(Allocator allocator, PartSeries series, byte[] terminal, long length) Constructor for thePartConsumerobject.PartEntryConsumer(Allocator allocator, PartSeries series, byte[] terminal, long length) Constructor for thePartEntryConsumerobject.PartEntryFactory(Allocator allocator, PartSeries series, byte[] terminal, long length) Constructor for thePartEntryFactoryobject.PartFactory(Allocator allocator, Segment header, long length) Constructor for thePartFactoryobject.PartHeaderConsumer(Allocator allocator) Constructor for thePartHeaderConsumerobject.PartSeriesConsumer(Allocator allocator, byte[] boundary) Constructor for thePartSeriesConsumerobject.PartSeriesConsumer(Allocator allocator, byte[] boundary, long length) Constructor for thePartSeriesConsumerobject.PartSeriesConsumer(Allocator allocator, PartSeries series, byte[] boundary) Constructor for thePartSeriesConsumerobject.PartSeriesConsumer(Allocator allocator, PartSeries series, byte[] boundary, long length) Constructor for thePartSeriesConsumerobject.TokenConsumer(Allocator allocator, byte[] token) TheTokenConsumerobject is used to read a token from the cursor.