Package org.apache.mina.core.buffer
Interface IoBufferAllocator
-
- All Known Implementing Classes:
CachedBufferAllocator,SimpleBufferAllocator
public interface IoBufferAllocatorAllocatesIoBuffers and manages them. Please implement this interface if you need more advanced memory management scheme.- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IoBufferallocate(int capacity, boolean direct)Returns the buffer which is capable of the specified size.ByteBufferallocateNioBuffer(int capacity, boolean direct)Returns the NIO buffer which is capable of the specified size.voiddispose()Dispose of this allocator.IoBufferwrap(ByteBuffer nioBuffer)Wraps the specified NIOByteBufferinto MINA buffer.
-
-
-
Method Detail
-
allocate
IoBuffer allocate(int capacity, boolean direct)
Returns the buffer which is capable of the specified size.- Parameters:
capacity- the capacity of the bufferdirect-trueto get a direct buffer,falseto get a heap buffer.- Returns:
- The allocated
IoBuffer
-
allocateNioBuffer
ByteBuffer allocateNioBuffer(int capacity, boolean direct)
Returns the NIO buffer which is capable of the specified size.- Parameters:
capacity- the capacity of the bufferdirect-trueto get a direct buffer,falseto get a heap buffer.- Returns:
- The allocated
ByteBuffer
-
wrap
IoBuffer wrap(ByteBuffer nioBuffer)
Wraps the specified NIOByteBufferinto MINA buffer.- Parameters:
nioBuffer- TheByteBufferto wrap- Returns:
- The
IoBufferwrapping theByteBuffer
-
dispose
void dispose()
Dispose of this allocator.
-
-