|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IoBufferAllocator
Allocates IoBuffer
s and manages them. Please implement this
interface if you need more advanced memory management scheme.
Method Summary | |
---|---|
IoBuffer |
allocate(int capacity,
boolean direct)
Returns the buffer which is capable of the specified size. |
ByteBuffer |
allocateNioBuffer(int capacity,
boolean direct)
Returns the NIO buffer which is capable of the specified size. |
void |
dispose()
Dispose of this allocator. |
IoBuffer |
wrap(ByteBuffer nioBuffer)
Wraps the specified NIO ByteBuffer into MINA buffer. |
Method Detail |
---|
IoBuffer allocate(int capacity, boolean direct)
capacity
- the capacity of the bufferdirect
- true to get a direct buffer,
false to get a heap buffer.ByteBuffer allocateNioBuffer(int capacity, boolean direct)
capacity
- the capacity of the bufferdirect
- true to get a direct buffer,
false to get a heap buffer.IoBuffer wrap(ByteBuffer nioBuffer)
ByteBuffer
into MINA buffer.
void dispose()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |