Uses of Interface
org.simpleframework.common.buffer.Allocator
-
Packages that use Allocator Package Description org.simpleframework.common.buffer -
-
Uses of Allocator in org.simpleframework.common.buffer
Classes in org.simpleframework.common.buffer that implement Allocator Modifier and Type Class Description class
ArrayAllocator
TheArrayAllocator
object is used to provide a means to allocate buffers using a single byte array.class
BufferAllocator
TheBufferAllocator
object is used to provide a means to allocate buffers using a single underlying buffer.class
FileAllocator
TheFileAllocator
object is used to create buffers that can be written to the file system.class
FilterAllocator
TheFilterAllocator
object is used to provide a means to provide a general set of constraints around buffer allocation.Fields in org.simpleframework.common.buffer declared as Allocator Modifier and Type Field Description protected Allocator
FilterAllocator. source
This is the allocator the underlying buffer is allocated with.Constructors in org.simpleframework.common.buffer with parameters of type Allocator Constructor Description BufferAllocator(Allocator source)
Constructor for theBufferAllocator
object.BufferAllocator(Allocator source, long capacity)
Constructor for theBufferAllocator
object.BufferAllocator(Allocator source, long capacity, long limit)
Constructor for theBufferAllocator
object.FilterAllocator(Allocator source)
Constructor for theFilterAllocator
object.FilterAllocator(Allocator source, long capacity)
Constructor for theFilterAllocator
object.FilterAllocator(Allocator source, long capacity, long limit)
Constructor for theFilterAllocator
object.
-