A C D E F G I J M N O P R S T U W X
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- allocateBuffer(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32LengthFieldPrepender
- allocateBuffer(ChannelHandlerContext, Serializable) - Method in class io.netty.contrib.handler.codec.serialization.CompatibleObjectEncoder
- allocateBuffer(ChannelHandlerContext, Serializable) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoder
- allocateBuffer(ChannelHandlerContext, Object) - Method in class io.netty.contrib.handler.codec.marshalling.MarshallingEncoder
- available() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
C
- cacheDisabled(ClassLoader) - Static method in class io.netty.contrib.handler.codec.serialization.ClassResolvers
-
cache disabled
- ClassResolver - Interface in io.netty.contrib.handler.codec.serialization
-
please use
ClassResolversas instance factory - ClassResolvers - Class in io.netty.contrib.handler.codec.serialization
- close() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- close() - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- CompatibleObjectEncoder - Class in io.netty.contrib.handler.codec.serialization
-
An encoder which serializes a Java object into a
Buffer(interoperability version). - CompatibleObjectEncoder() - Constructor for class io.netty.contrib.handler.codec.serialization.CompatibleObjectEncoder
-
Creates a new instance with the reset interval of
16. - CompatibleObjectEncoder(int) - Constructor for class io.netty.contrib.handler.codec.serialization.CompatibleObjectEncoder
-
Creates a new instance.
- ContextBoundUnmarshallerProvider - Class in io.netty.contrib.handler.codec.marshalling
-
UnmarshallerProviderwhich store a reference to theUnmarshallerin theChannelvia theAttributeMap.attr(AttributeKey)method. - ContextBoundUnmarshallerProvider(MarshallerFactory, MarshallingConfiguration) - Constructor for class io.netty.contrib.handler.codec.marshalling.ContextBoundUnmarshallerProvider
D
- decode(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.json.JsonObjectDecoder
- decode(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufDecoder
- decode(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufDecoderNano
- decode(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32FrameDecoder
- decode(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.xml.XmlFrameDecoder
- decode0(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.marshalling.MarshallingDecoder
- decode0(ChannelHandlerContext, Buffer) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoder
- DefaultMarshallerProvider - Class in io.netty.contrib.handler.codec.marshalling
-
Default implementation of
MarshallerProviderwhich just create a newMarshalleron everDefaultMarshallerProvider.getMarshaller(ChannelHandlerContext)call. - DefaultMarshallerProvider(MarshallerFactory, MarshallingConfiguration) - Constructor for class io.netty.contrib.handler.codec.marshalling.DefaultMarshallerProvider
-
Create a new instance
- DefaultUnmarshallerProvider - Class in io.netty.contrib.handler.codec.marshalling
-
Default implementation of
UnmarshallerProviderwhich will just create a newUnmarshalleron every call toDefaultUnmarshallerProvider.getUnmarshaller(ChannelHandlerContext) - DefaultUnmarshallerProvider(MarshallerFactory, MarshallingConfiguration) - Constructor for class io.netty.contrib.handler.codec.marshalling.DefaultUnmarshallerProvider
-
Create a new instance of
DefaultMarshallerProvider
E
- encode(ChannelHandlerContext, MessageLiteOrBuilder, List<Object>) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufEncoder
- encode(ChannelHandlerContext, MessageNano, List<Object>) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufEncoderNano
- encode(ChannelHandlerContext, Buffer, Buffer) - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32LengthFieldPrepender
- encode(ChannelHandlerContext, Serializable, Buffer) - Method in class io.netty.contrib.handler.codec.serialization.CompatibleObjectEncoder
- encode(ChannelHandlerContext, Serializable, Buffer) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoder
- encode(ChannelHandlerContext, Object, Buffer) - Method in class io.netty.contrib.handler.codec.marshalling.MarshallingEncoder
- extractObject(ChannelHandlerContext, Buffer, int, int) - Method in class io.netty.contrib.handler.codec.json.JsonObjectDecoder
-
Override this method if you want to filter the json objects/arrays that get passed through the pipeline.
F
- flush() - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
G
- getMarshaller(ChannelHandlerContext) - Method in class io.netty.contrib.handler.codec.marshalling.DefaultMarshallerProvider
- getMarshaller(ChannelHandlerContext) - Method in interface io.netty.contrib.handler.codec.marshalling.MarshallerProvider
-
Get a
Marshallerfor the givenChannelHandlerContext - getMarshaller(ChannelHandlerContext) - Method in class io.netty.contrib.handler.codec.marshalling.ThreadLocalMarshallerProvider
- getUnmarshaller(ChannelHandlerContext) - Method in class io.netty.contrib.handler.codec.marshalling.ContextBoundUnmarshallerProvider
- getUnmarshaller(ChannelHandlerContext) - Method in class io.netty.contrib.handler.codec.marshalling.DefaultUnmarshallerProvider
- getUnmarshaller(ChannelHandlerContext) - Method in class io.netty.contrib.handler.codec.marshalling.ThreadLocalUnmarshallerProvider
- getUnmarshaller(ChannelHandlerContext) - Method in interface io.netty.contrib.handler.codec.marshalling.UnmarshallerProvider
-
Get the
Unmarshallerfor the givenChannelHandlerContext
I
- io.netty.contrib.handler.codec.json - package io.netty.contrib.handler.codec.json
-
JSON specific codecs.
- io.netty.contrib.handler.codec.marshalling - package io.netty.contrib.handler.codec.marshalling
-
Decoder and Encoder which uses JBoss Marshalling.
- io.netty.contrib.handler.codec.protobuf - package io.netty.contrib.handler.codec.protobuf
-
Encoder and decoder which transform a Google Protocol Buffers
MessageandMessageNanointo aBufferand vice versa. - io.netty.contrib.handler.codec.serialization - package io.netty.contrib.handler.codec.serialization
-
Encoder, decoder and their compatibility stream implementations which transform a
Serializableobject into a byte buffer and vice versa. - io.netty.contrib.handler.codec.xml - package io.netty.contrib.handler.codec.xml
-
Xml specific codecs.
- isSharable() - Method in class io.netty.contrib.handler.codec.marshalling.MarshallingEncoder
- isSharable() - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufDecoder
- isSharable() - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufDecoderNano
- isSharable() - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufEncoder
- isSharable() - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufEncoderNano
- isSharable() - Method in class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32LengthFieldPrepender
- isSharable() - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoder
J
- JsonObjectDecoder - Class in io.netty.contrib.handler.codec.json
-
Splits a byte stream of JSON objects and arrays into individual objects/arrays and passes them up the
ChannelPipeline. - JsonObjectDecoder() - Constructor for class io.netty.contrib.handler.codec.json.JsonObjectDecoder
- JsonObjectDecoder(boolean) - Constructor for class io.netty.contrib.handler.codec.json.JsonObjectDecoder
- JsonObjectDecoder(int) - Constructor for class io.netty.contrib.handler.codec.json.JsonObjectDecoder
- JsonObjectDecoder(int, boolean) - Constructor for class io.netty.contrib.handler.codec.json.JsonObjectDecoder
M
- mark(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- markSupported() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- MarshallerProvider - Interface in io.netty.contrib.handler.codec.marshalling
-
This provider is responsible to get a
Marshallerfor the givenChannelHandlerContext. - MarshallingDecoder - Class in io.netty.contrib.handler.codec.marshalling
-
Decoder which MUST be used with
MarshallingEncoder. - MarshallingDecoder(UnmarshallerProvider) - Constructor for class io.netty.contrib.handler.codec.marshalling.MarshallingDecoder
-
Creates a new decoder whose maximum object size is
1048576bytes. - MarshallingDecoder(UnmarshallerProvider, int) - Constructor for class io.netty.contrib.handler.codec.marshalling.MarshallingDecoder
-
Creates a new decoder with the specified maximum object size.
- MarshallingEncoder - Class in io.netty.contrib.handler.codec.marshalling
-
MessageToByteEncoderimplementation which uses JBoss Marshalling to marshal an Object. - MarshallingEncoder(MarshallerProvider) - Constructor for class io.netty.contrib.handler.codec.marshalling.MarshallingEncoder
-
Creates a new encoder.
N
- newObjectOutputStream(OutputStream) - Method in class io.netty.contrib.handler.codec.serialization.CompatibleObjectEncoder
-
Creates a new
ObjectOutputStreamwhich wraps the specifiedOutputStream.
O
- ObjectDecoder - Class in io.netty.contrib.handler.codec.serialization
-
A decoder which deserializes the received
Buffers into Java objects. - ObjectDecoder(int, ClassResolver) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoder
-
Creates a new decoder with the specified maximum object size.
- ObjectDecoder(ClassResolver) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoder
-
Creates a new decoder whose maximum object size is
1048576bytes. - ObjectDecoderInputStream - Class in io.netty.contrib.handler.codec.serialization
- ObjectDecoderInputStream(InputStream) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
-
Creates a new
ObjectInput. - ObjectDecoderInputStream(InputStream, int) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
-
Creates a new
ObjectInput. - ObjectDecoderInputStream(InputStream, ClassLoader) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
-
Creates a new
ObjectInput. - ObjectDecoderInputStream(InputStream, ClassLoader, int) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
-
Creates a new
ObjectInput. - ObjectEncoder - Class in io.netty.contrib.handler.codec.serialization
-
An encoder which serializes a Java object into a
Buffer. - ObjectEncoder() - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectEncoder
- ObjectEncoderOutputStream - Class in io.netty.contrib.handler.codec.serialization
- ObjectEncoderOutputStream(OutputStream) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
-
Creates a new
ObjectOutputwith the estimated length of 512 bytes. - ObjectEncoderOutputStream(OutputStream, int) - Constructor for class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
-
Creates a new
ObjectOutput.
P
- ProtobufDecoder - Class in io.netty.contrib.handler.codec.protobuf
- ProtobufDecoder(MessageLite) - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufDecoder
-
Creates a new instance.
- ProtobufDecoder(MessageLite, ExtensionRegistry) - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufDecoder
- ProtobufDecoder(MessageLite, ExtensionRegistryLite) - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufDecoder
- ProtobufDecoderNano - Class in io.netty.contrib.handler.codec.protobuf
- ProtobufDecoderNano(Class<? extends MessageNano>) - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufDecoderNano
-
Creates a new instance.
- ProtobufEncoder - Class in io.netty.contrib.handler.codec.protobuf
- ProtobufEncoder() - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufEncoder
- ProtobufEncoderNano - Class in io.netty.contrib.handler.codec.protobuf
- ProtobufEncoderNano() - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufEncoderNano
- ProtobufVarint32FrameDecoder - Class in io.netty.contrib.handler.codec.protobuf
-
A decoder that splits the received
Buffers dynamically by the value of the Google Protocol Buffers Base 128 Varints integer length field in the message. - ProtobufVarint32FrameDecoder() - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32FrameDecoder
- ProtobufVarint32LengthFieldPrepender - Class in io.netty.contrib.handler.codec.protobuf
-
An encoder that prepends the Google Protocol Buffers Base 128 Varints integer length field.
- ProtobufVarint32LengthFieldPrepender() - Constructor for class io.netty.contrib.handler.codec.protobuf.ProtobufVarint32LengthFieldPrepender
R
- read() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- read(byte[]) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- read(byte[], int, int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readBoolean() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readByte() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readChar() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readDouble() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readFloat() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readFully(byte[]) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readFully(byte[], int, int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readInt() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readLine() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
-
Deprecated.Use
BufferedReader.readLine()instead. - readLong() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readObject() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readShort() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readUnsignedByte() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readUnsignedShort() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- readUTF() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- reset() - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- resolve(String) - Method in interface io.netty.contrib.handler.codec.serialization.ClassResolver
S
- size() - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- skip(long) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- skipBytes(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectDecoderInputStream
- softCachingConcurrentResolver(ClassLoader) - Static method in class io.netty.contrib.handler.codec.serialization.ClassResolvers
-
aggressive concurrent cache good for shared cache, when we're not worried about class unloading
- softCachingResolver(ClassLoader) - Static method in class io.netty.contrib.handler.codec.serialization.ClassResolvers
-
aggressive non-concurrent cache good for non-shared cache, when we're not worried about class unloading
T
- ThreadLocalMarshallerProvider - Class in io.netty.contrib.handler.codec.marshalling
-
UnmarshallerProviderimplementation which use aThreadLocalto store references toMarshallerinstances. - ThreadLocalMarshallerProvider(MarshallerFactory, MarshallingConfiguration) - Constructor for class io.netty.contrib.handler.codec.marshalling.ThreadLocalMarshallerProvider
-
Create a new instance of the
ThreadLocalMarshallerProvider - ThreadLocalUnmarshallerProvider - Class in io.netty.contrib.handler.codec.marshalling
-
UnmarshallerProviderimplementation which use aThreadLocalto store references toUnmarshallerinstances. - ThreadLocalUnmarshallerProvider(MarshallerFactory, MarshallingConfiguration) - Constructor for class io.netty.contrib.handler.codec.marshalling.ThreadLocalUnmarshallerProvider
-
Create a new instance of the
ThreadLocalUnmarshallerProvider
U
- UnmarshallerProvider - Interface in io.netty.contrib.handler.codec.marshalling
-
This provider is responsible to get an
Unmarshallerfor aChannelHandlerContext
W
- weakCachingConcurrentResolver(ClassLoader) - Static method in class io.netty.contrib.handler.codec.serialization.ClassResolvers
-
non-aggressive concurrent cache good for shared cache, when we're worried about class unloading
- weakCachingResolver(ClassLoader) - Static method in class io.netty.contrib.handler.codec.serialization.ClassResolvers
-
non-aggressive non-concurrent cache good for non-shared default cache
- write(byte[]) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- write(byte[], int, int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- write(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeBoolean(boolean) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeByte(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeBytes(String) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeChar(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeChars(String) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeDouble(double) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeFloat(float) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeInt(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeLong(long) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeObject(Object) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeShort(int) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
- writeUTF(String) - Method in class io.netty.contrib.handler.codec.serialization.ObjectEncoderOutputStream
X
- XmlFrameDecoder - Class in io.netty.contrib.handler.codec.xml
-
A frame decoder for single separate XML based message streams.
- XmlFrameDecoder(int) - Constructor for class io.netty.contrib.handler.codec.xml.XmlFrameDecoder
All Classes All Packages