public class ArrayByteBufferPool extends Object implements ByteBufferPool
Modifier and Type | Class and Description |
---|---|
static class |
ArrayByteBufferPool.Bucket |
Constructor and Description |
---|
ArrayByteBufferPool() |
ArrayByteBufferPool(int minSize,
int increment,
int maxSize) |
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
acquire(int size,
boolean direct)
Requests a
ByteBuffer of the given size. |
void |
clear() |
void |
release(ByteBuffer buffer)
Returns a
ByteBuffer , usually obtained with ByteBufferPool.acquire(int, boolean)
(but not necessarily), making it available for recycling and reuse. |
public ArrayByteBufferPool()
public ArrayByteBufferPool(int minSize, int increment, int maxSize)
public ByteBuffer acquire(int size, boolean direct)
ByteBufferPool
Requests a ByteBuffer
of the given size.
The returned buffer may have a bigger capacity than the size being requested but it will have the limit set to the given size.
acquire
in interface ByteBufferPool
size
- the size of the bufferdirect
- whether the buffer must be direct or notByteBufferPool.release(ByteBuffer)
public void release(ByteBuffer buffer)
ByteBufferPool
Returns a ByteBuffer
, usually obtained with ByteBufferPool.acquire(int, boolean)
(but not necessarily), making it available for recycling and reuse.
release
in interface ByteBufferPool
buffer
- the buffer to returnByteBufferPool.acquire(int, boolean)
public void clear()
Copyright © 1995-2015 Webtide. All Rights Reserved.