
public abstract class AbstractChannelBufferFactory extends Object implements ChannelBufferFactory
ChannelBufferFactory.| Modifier | Constructor and Description |
|---|---|
protected |
AbstractChannelBufferFactory()
Creates a new factory whose default
ByteOrder is
ByteOrder.BIG_ENDIAN. |
protected |
AbstractChannelBufferFactory(ByteOrder defaultOrder)
Creates a new factory with the specified default
ByteOrder. |
| Modifier and Type | Method and Description |
|---|---|
ChannelBuffer |
getBuffer(int capacity)
Returns a
ChannelBuffer with the specified capacity. |
ByteOrder |
getDefaultOrder()
Returns the default endianness of the
ChannelBuffer which is
returned by ChannelBufferFactory.getBuffer(int). |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBufferprotected AbstractChannelBufferFactory()
ByteOrder is
ByteOrder.BIG_ENDIAN.public ChannelBuffer getBuffer(int capacity)
ChannelBufferFactoryChannelBuffer with the specified capacity.
This method is identical to getBuffer(getDefaultOrder(), capacity).getBuffer in interface ChannelBufferFactorycapacity - the capacity of the returned ChannelBufferChannelBuffer with the specified capacity,
whose readerIndex and writerIndex are 0public ByteOrder getDefaultOrder()
ChannelBufferFactoryChannelBuffer which is
returned by ChannelBufferFactory.getBuffer(int).getDefaultOrder in interface ChannelBufferFactoryChannelBuffer which is
returned by ChannelBufferFactory.getBuffer(int)Copyright © 2008-2013 JBoss, by Red Hat. All Rights Reserved.