Uses of Interface
org.jboss.netty.handler.codec.marshalling.UnmarshallerProvider
Packages that use UnmarshallerProvider
-
Uses of UnmarshallerProvider in org.jboss.netty.handler.codec.marshalling
Classes in org.jboss.netty.handler.codec.marshalling that implement UnmarshallerProviderModifier and TypeClassDescriptionclass
UnmarshallerProvider
which store a reference to theUnmarshaller
in theChannelHandlerContext
via theChannelHandlerContext.setAttachment(Object)
method.class
Default implementation ofUnmarshallerProvider
which will just create a newUnmarshaller
on every call toDefaultUnmarshallerProvider.getUnmarshaller(ChannelHandlerContext)
class
UnmarshallerProvider
implementation which use aThreadLocal
to store references toUnmarshaller
instances.Fields in org.jboss.netty.handler.codec.marshalling declared as UnmarshallerProviderModifier and TypeFieldDescriptionprotected final UnmarshallerProvider
CompatibleMarshallingDecoder.provider
private final UnmarshallerProvider
MarshallingDecoder.provider
Constructors in org.jboss.netty.handler.codec.marshalling with parameters of type UnmarshallerProviderModifierConstructorDescriptionCompatibleMarshallingDecoder
(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.