Uses of Interface
org.jboss.netty.buffer.ChannelBufferFactory
Packages that use ChannelBufferFactory
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
An HTTP-based client-side
SocketChannel
and its corresponding server-side Servlet implementation that make your
existing server application work in a firewalled network.Encoder and decoder which transform a
Base64-encoded
String or ChannelBuffer
into a decoded ChannelBuffer and vice versa.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.
-
Uses of ChannelBufferFactory in org.jboss.netty.buffer
Classes in org.jboss.netty.buffer that implement ChannelBufferFactoryModifier and TypeClassDescriptionclassA skeletal implementation ofChannelBufferFactory.classAChannelBufferFactorywhich pre-allocates a large chunk of direct buffer and returns its slice on demand.classAChannelBufferFactorywhich merely allocates a heap buffer with the specified capacity.Methods in org.jboss.netty.buffer that return ChannelBufferFactoryModifier and TypeMethodDescriptionBigEndianHeapChannelBuffer.factory()ByteBufferBackedChannelBuffer.factory()ChannelBuffer.factory()Returns the factory which creates aChannelBufferwhose type and defaultByteOrderare same with this buffer.CompositeChannelBuffer.factory()DuplicatedChannelBuffer.factory()DynamicChannelBuffer.factory()LittleEndianHeapChannelBuffer.factory()ReadOnlyChannelBuffer.factory()SlicedChannelBuffer.factory()TruncatedChannelBuffer.factory()static ChannelBufferFactoryDirectChannelBufferFactory.getInstance()static ChannelBufferFactoryDirectChannelBufferFactory.getInstance(ByteOrder defaultEndianness) static ChannelBufferFactoryHeapChannelBufferFactory.getInstance()static ChannelBufferFactoryHeapChannelBufferFactory.getInstance(ByteOrder endianness) Methods in org.jboss.netty.buffer with parameters of type ChannelBufferFactoryModifier and TypeMethodDescriptionstatic ChannelBufferChannelBuffers.dynamicBuffer(int estimatedLength, ChannelBufferFactory factory) Creates a new big-endian dynamic buffer with the specified estimated data length using the specified factory.static ChannelBufferChannelBuffers.dynamicBuffer(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 ChannelBufferChannelBuffers.dynamicBuffer(ChannelBufferFactory factory) Constructors in org.jboss.netty.buffer with parameters of type ChannelBufferFactoryModifierConstructorDescriptionDynamicChannelBuffer(ByteOrder endianness, int estimatedLength, ChannelBufferFactory factory) -
Uses of ChannelBufferFactory in org.jboss.netty.channel
Methods in org.jboss.netty.channel that return ChannelBufferFactoryModifier and TypeMethodDescriptionChannelConfig.getBufferFactory()Returns the defaultChannelBufferFactoryused to create a newChannelBuffer.DefaultChannelConfig.getBufferFactory()DefaultServerChannelConfig.getBufferFactory()Methods in org.jboss.netty.channel with parameters of type ChannelBufferFactoryModifier and TypeMethodDescriptionvoidChannelConfig.setBufferFactory(ChannelBufferFactory bufferFactory) Sets the defaultChannelBufferFactoryused to create a newChannelBuffer.voidDefaultChannelConfig.setBufferFactory(ChannelBufferFactory bufferFactory) voidDefaultServerChannelConfig.setBufferFactory(ChannelBufferFactory bufferFactory) -
Uses of ChannelBufferFactory in org.jboss.netty.channel.socket.http
Methods in org.jboss.netty.channel.socket.http that return ChannelBufferFactoryMethods in org.jboss.netty.channel.socket.http with parameters of type ChannelBufferFactoryModifier and TypeMethodDescriptionvoidHttpTunnelingSocketChannelConfig.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 ChannelBufferFactoryModifier and TypeMethodDescriptionstatic ChannelBufferBase64.decode(ChannelBuffer src, int off, int len, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.decode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.decode(ChannelBuffer src, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.decode(ChannelBuffer src, Base64Dialect dialect, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, boolean breakLines, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, int off, int len, boolean breakLines, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, int off, int len, boolean breakLines, Base64Dialect dialect, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, int off, int len, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, int off, int len, Base64Dialect dialect, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.encode(ChannelBuffer src, ChannelBufferFactory bufferFactory) static ChannelBufferBase64.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 ChannelBufferFactoryModifierConstructorDescriptionDecoderEmbedder(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.