
public class HeapChannelBufferFactory extends AbstractChannelBufferFactory
ChannelBufferFactory which merely allocates a heap buffer with
the specified capacity. HeapChannelBufferFactory should perform
very well in most situations because it relies on the JVM garbage collector,
which is highly optimized for heap allocation.| Constructor and Description |
|---|
HeapChannelBufferFactory()
Creates a new factory whose default
ByteOrder is
ByteOrder.BIG_ENDIAN. |
HeapChannelBufferFactory(ByteOrder defaultOrder)
Creates a new factory with the specified default
ByteOrder. |
| Modifier and Type | Method and Description |
|---|---|
ChannelBuffer |
getBuffer(ByteOrder order,
int capacity)
|
static ChannelBufferFactory |
getInstance() |
static ChannelBufferFactory |
getInstance(ByteOrder endianness) |
getBuffer, getDefaultOrderpublic HeapChannelBufferFactory()
ByteOrder is
ByteOrder.BIG_ENDIAN.public static ChannelBufferFactory getInstance()
public static ChannelBufferFactory getInstance(ByteOrder endianness)
public ChannelBuffer getBuffer(ByteOrder order, int capacity)
ChannelBufferFactoryorder - the endianness of the returned ChannelBuffercapacity - the capacity of the returned ChannelBufferChannelBuffer with the specified endianness and
capacity, whose readerIndex and writerIndex
are 0Copyright © 2008-2013 JBoss, by Red Hat. All Rights Reserved.