Uses of Interface
io.netty.handler.codec.marshalling.UnmarshallerProvider
-
Packages that use UnmarshallerProvider Package Description io.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling. -
-
Uses of UnmarshallerProvider in io.netty.handler.codec.marshalling
Classes in io.netty.handler.codec.marshalling that implement UnmarshallerProvider Modifier and Type Class Description class
ContextBoundUnmarshallerProvider
UnmarshallerProvider
which store a reference to theUnmarshaller
in theChannelHandlerContext
via theChannelHandlerContext.attr(AttributeKey)
method.class
DefaultUnmarshallerProvider
Default implementation ofUnmarshallerProvider
which will just create a newUnmarshaller
on every call toDefaultUnmarshallerProvider.getUnmarshaller(ChannelHandlerContext)
class
ThreadLocalUnmarshallerProvider
UnmarshallerProvider
implementation which use aThreadLocal
to store references toUnmarshaller
instances.Fields in io.netty.handler.codec.marshalling declared as UnmarshallerProvider Modifier and Type Field Description protected UnmarshallerProvider
CompatibleMarshallingDecoder. provider
Constructors in io.netty.handler.codec.marshalling with parameters of type UnmarshallerProvider Constructor Description CompatibleMarshallingDecoder(UnmarshallerProvider provider, int maxObjectSize)
Create a new instance ofCompatibleMarshallingDecoder
.MarshallingDecoder(UnmarshallerProvider provider)
Creates a new decoder whose maximum object size is1048576
bytes.MarshallingDecoder(UnmarshallerProvider provider, int maxObjectSize)
Creates a new decoder with the specified maximum object size.
-