Uses of Interface
org.jboss.netty.buffer.ChannelBufferFactory
-
Packages that use ChannelBufferFactory Package Description org.jboss.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.org.jboss.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.org.jboss.netty.channel.socket.http An HTTP-based client-sideSocketChannel
and its corresponding server-side Servlet implementation that make your existing server application work in a firewalled network.org.jboss.netty.handler.codec.base64 Encoder and decoder which transform a Base64-encodedString
orChannelBuffer
into a decodedChannelBuffer
and vice versa.org.jboss.netty.handler.codec.embedder A helper that wraps an encoder or a decoder so that they can be used without doing actual I/O in unit tests or higher level codecs.org.jboss.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.org.jboss.netty.handler.codec.replay Specialized variation ofFrameDecoder
which enables implementation of a non-blocking decoder in the blocking I/O paradigm. -
-
Uses of ChannelBufferFactory in org.jboss.netty.buffer
Classes in org.jboss.netty.buffer that implement ChannelBufferFactory Modifier and Type Class Description class
AbstractChannelBufferFactory
A skeletal implementation ofChannelBufferFactory
.class
DirectChannelBufferFactory
AChannelBufferFactory
which pre-allocates a large chunk of direct buffer and returns its slice on demand.class
HeapChannelBufferFactory
AChannelBufferFactory
which merely allocates a heap buffer with the specified capacity.Fields in org.jboss.netty.buffer declared as ChannelBufferFactory Modifier and Type Field Description private ChannelBufferFactory
DynamicChannelBuffer. factory
Methods in org.jboss.netty.buffer that return ChannelBufferFactory Modifier and Type Method Description ChannelBufferFactory
BigEndianHeapChannelBuffer. factory()
ChannelBufferFactory
ByteBufferBackedChannelBuffer. factory()
ChannelBufferFactory
ChannelBuffer. factory()
Returns the factory which creates aChannelBuffer
whose type and defaultByteOrder
are same with this buffer.ChannelBufferFactory
CompositeChannelBuffer. factory()
ChannelBufferFactory
DuplicatedChannelBuffer. factory()
ChannelBufferFactory
DynamicChannelBuffer. factory()
ChannelBufferFactory
LittleEndianHeapChannelBuffer. factory()
ChannelBufferFactory
ReadOnlyChannelBuffer. factory()
ChannelBufferFactory
SlicedChannelBuffer. factory()
ChannelBufferFactory
TruncatedChannelBuffer. factory()
static ChannelBufferFactory
DirectChannelBufferFactory. getInstance()
static ChannelBufferFactory
DirectChannelBufferFactory. getInstance(java.nio.ByteOrder defaultEndianness)
static ChannelBufferFactory
HeapChannelBufferFactory. getInstance()
static ChannelBufferFactory
HeapChannelBufferFactory. getInstance(java.nio.ByteOrder endianness)
Methods in org.jboss.netty.buffer with parameters of type ChannelBufferFactory Modifier and Type Method Description static ChannelBuffer
ChannelBuffers. dynamicBuffer(int estimatedLength, ChannelBufferFactory factory)
Creates a new big-endian dynamic buffer with the specified estimated data length using the specified factory.static ChannelBuffer
ChannelBuffers. dynamicBuffer(java.nio.ByteOrder endianness, int estimatedLength, ChannelBufferFactory factory)
Creates a new dynamic buffer with the specified endianness and the specified estimated data length using the specified factory.static ChannelBuffer
ChannelBuffers. dynamicBuffer(ChannelBufferFactory factory)
Constructors in org.jboss.netty.buffer with parameters of type ChannelBufferFactory Constructor Description DynamicChannelBuffer(java.nio.ByteOrder endianness, int estimatedLength, ChannelBufferFactory factory)
-
Uses of ChannelBufferFactory in org.jboss.netty.channel
Fields in org.jboss.netty.channel declared as ChannelBufferFactory Modifier and Type Field Description private ChannelBufferFactory
DefaultChannelConfig. bufferFactory
private ChannelBufferFactory
DefaultServerChannelConfig. bufferFactory
Methods in org.jboss.netty.channel that return ChannelBufferFactory Modifier and Type Method Description ChannelBufferFactory
ChannelConfig. getBufferFactory()
Returns the defaultChannelBufferFactory
used to create a newChannelBuffer
.ChannelBufferFactory
DefaultChannelConfig. getBufferFactory()
ChannelBufferFactory
DefaultServerChannelConfig. getBufferFactory()
Methods in org.jboss.netty.channel with parameters of type ChannelBufferFactory Modifier and Type Method Description void
ChannelConfig. setBufferFactory(ChannelBufferFactory bufferFactory)
Sets the defaultChannelBufferFactory
used to create a newChannelBuffer
.void
DefaultChannelConfig. setBufferFactory(ChannelBufferFactory bufferFactory)
void
DefaultServerChannelConfig. setBufferFactory(ChannelBufferFactory bufferFactory)
-
Uses of ChannelBufferFactory in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http that return ChannelBufferFactory Modifier and Type Method Description ChannelBufferFactory
HttpTunnelingSocketChannelConfig. getBufferFactory()
Methods in org.jboss.netty.channel.socket.http with parameters of type ChannelBufferFactory Modifier and Type Method Description void
HttpTunnelingSocketChannelConfig. setBufferFactory(ChannelBufferFactory bufferFactory)
-
Uses of ChannelBufferFactory in org.jboss.netty.handler.codec.base64
Methods in org.jboss.netty.handler.codec.base64 with parameters of type ChannelBufferFactory Modifier and Type Method Description static ChannelBuffer
Base64. decode(ChannelBuffer src, int off, int len, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. decode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. decode(ChannelBuffer src, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. decode(ChannelBuffer src, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, boolean breakLines, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, int off, int len, boolean breakLines, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, int off, int len, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, int off, int len, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, ChannelBufferFactory bufferFactory)
static ChannelBuffer
Base64. encode(ChannelBuffer src, Base64Dialect dialect, ChannelBufferFactory bufferFactory)
-
Uses of ChannelBufferFactory in org.jboss.netty.handler.codec.embedder
Constructors in org.jboss.netty.handler.codec.embedder with parameters of type ChannelBufferFactory Constructor Description AbstractCodecEmbedder(ChannelBufferFactory bufferFactory, ChannelHandler... handlers)
Creates a new embedder whose pipeline is composed of the specified handlers.DecoderEmbedder(ChannelBufferFactory bufferFactory, ChannelUpstreamHandler... handlers)
Creates a new embedder whose pipeline is composed of the specified handlers.EncoderEmbedder(ChannelBufferFactory bufferFactory, ChannelDownstreamHandler... handlers)
Creates a new embedder whose pipeline is composed of the specified handlers. -
Uses of ChannelBufferFactory in org.jboss.netty.handler.codec.marshalling
Constructors in org.jboss.netty.handler.codec.marshalling with parameters of type ChannelBufferFactory Constructor Description ChannelBufferByteOutput(ChannelBufferFactory factory, int estimatedLength)
CallsChannelBufferByteOutput(ChannelBuffer)
with a dynamicChannelBuffer
-
Uses of ChannelBufferFactory in org.jboss.netty.handler.codec.replay
Methods in org.jboss.netty.handler.codec.replay that return ChannelBufferFactory Modifier and Type Method Description ChannelBufferFactory
ReplayingDecoderBuffer. factory()
-