See: Description
Interface | Description |
---|---|
MarshallerProvider |
This provider is responsible to get a
Marshaller for the given ChannelHandlerContext . |
UnmarshallerProvider |
This provider is responsible to get an
Unmarshaller for a ChannelHandlerContext |
Class | Description |
---|---|
CompatibleMarshallingDecoder | |
CompatibleMarshallingEncoder |
MessageToByteEncoder implementation which uses JBoss Marshalling to marshal
an Object. |
ContextBoundUnmarshallerProvider |
UnmarshallerProvider which store a reference to the Unmarshaller in the
ChannelHandlerContext via the AttributeMap.attr(AttributeKey)
method. |
DefaultMarshallerProvider |
Default implementation of
MarshallerProvider which just create a new Marshaller
on ever DefaultMarshallerProvider.getMarshaller(ChannelHandlerContext) call. |
DefaultUnmarshallerProvider |
Default implementation of
UnmarshallerProvider which will just create a new Unmarshaller
on every call to DefaultUnmarshallerProvider.getUnmarshaller(ChannelHandlerContext) |
MarshallingDecoder |
Decoder which MUST be used with
MarshallingEncoder . |
MarshallingEncoder |
MessageToByteEncoder implementation which uses JBoss Marshalling to marshal
an Object. |
ThreadLocalMarshallerProvider |
UnmarshallerProvider implementation which use a ThreadLocal to store references
to Marshaller instances. |
ThreadLocalUnmarshallerProvider |
UnmarshallerProvider implementation which use a ThreadLocal to store references
to Unmarshaller instances. |
Copyright © 2008–2018 The Netty Project. All rights reserved.