Uses of Class
io.netty.handler.codec.MessageAggregator
-
Packages that use MessageAggregator Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.stomp STOMP codec -
-
Uses of MessageAggregator in io.netty.handler.codec.http
Subclasses of MessageAggregator in io.netty.handler.codec.http Modifier and Type Class Description class
HttpClientUpgradeHandler
Client-side handler for handling an HTTP upgrade handshake to another protocol.class
HttpObjectAggregator
AChannelHandler
that aggregates anHttpMessage
and its followingHttpContent
s into a singleFullHttpRequest
orFullHttpResponse
(depending on if it used to handle requests or responses) with no followingHttpContent
s.class
HttpServerUpgradeHandler
A server-side handler that receives HTTP requests and optionally performs a protocol switch if the requested protocol is supported. -
Uses of MessageAggregator in io.netty.handler.codec.http.websocketx
Subclasses of MessageAggregator in io.netty.handler.codec.http.websocketx Modifier and Type Class Description class
WebSocketFrameAggregator
Handler that aggregate fragmented WebSocketFrame's. -
Uses of MessageAggregator in io.netty.handler.codec.memcache
Subclasses of MessageAggregator in io.netty.handler.codec.memcache Modifier and Type Class Description class
AbstractMemcacheObjectAggregator<H extends MemcacheMessage>
AChannelHandler
that aggregates anMemcacheMessage
and its followingMemcacheContent
s into a singleMemcacheMessage
with no followingMemcacheContent
s. -
Uses of MessageAggregator in io.netty.handler.codec.memcache.binary
Subclasses of MessageAggregator in io.netty.handler.codec.memcache.binary Modifier and Type Class Description class
BinaryMemcacheObjectAggregator
An object aggregator for the memcache binary protocol. -
Uses of MessageAggregator in io.netty.handler.codec.redis
Subclasses of MessageAggregator in io.netty.handler.codec.redis Modifier and Type Class Description class
RedisBulkStringAggregator
AChannelHandler
that aggregates anBulkStringHeaderRedisMessage
and its followingBulkStringRedisContent
s into a singleFullBulkStringRedisMessage
with no followingBulkStringRedisContent
s. -
Uses of MessageAggregator in io.netty.handler.codec.stomp
Subclasses of MessageAggregator in io.netty.handler.codec.stomp Modifier and Type Class Description class
StompSubframeAggregator
AChannelHandler
that aggregates anStompHeadersSubframe
and its followingStompContentSubframe
s into a singleStompFrame
.
-