Uses of Interface
io.netty.channel.MessageSizeEstimator
-
Packages that use MessageSizeEstimator Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of MessageSizeEstimator in io.netty.channel
Classes in io.netty.channel that implement MessageSizeEstimator Modifier and Type Class Description classDefaultMessageSizeEstimatorDefaultMessageSizeEstimatorimplementation which supports the estimation of the size ofByteBuf,ByteBufHolderandFileRegion.Fields in io.netty.channel declared as MessageSizeEstimator Modifier and Type Field Description static MessageSizeEstimatorDefaultMessageSizeEstimator. DEFAULTReturn the default implementation which returns8for unknown messages.private static MessageSizeEstimatorDefaultChannelConfig. DEFAULT_MSG_SIZE_ESTIMATORprivate MessageSizeEstimatorDefaultChannelConfig. msgSizeEstimatorFields in io.netty.channel with type parameters of type MessageSizeEstimator Modifier and Type Field Description static ChannelOption<MessageSizeEstimator>ChannelOption. MESSAGE_SIZE_ESTIMATORMethods in io.netty.channel that return MessageSizeEstimator Modifier and Type Method Description MessageSizeEstimatorChannelConfig. getMessageSizeEstimator()ReturnsMessageSizeEstimatorwhich is used for the channel to detect the size of a message.MessageSizeEstimatorDefaultChannelConfig. getMessageSizeEstimator()Methods in io.netty.channel with parameters of type MessageSizeEstimator Modifier and Type Method Description ChannelConfigChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Set theMessageSizeEstimatorwhich is used for the channel to detect the size of a message.ChannelConfigDefaultChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator) -
Uses of MessageSizeEstimator in io.netty.channel.socket
Methods in io.netty.channel.socket with parameters of type MessageSizeEstimator Modifier and Type Method Description DatagramChannelConfigDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)DatagramChannelConfigDefaultDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)ServerSocketChannelConfigDefaultServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)SocketChannelConfigDefaultSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)ServerSocketChannelConfigServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)SocketChannelConfigSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator) -
Uses of MessageSizeEstimator in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type MessageSizeEstimator Modifier and Type Method Description OioDatagramChannelConfigDefaultOioDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)OioServerSocketChannelConfigDefaultOioServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated.OioSocketChannelConfigDefaultOioSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated.OioDatagramChannelConfigOioDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated.OioServerSocketChannelConfigOioServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated.OioSocketChannelConfigOioSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated. -
Uses of MessageSizeEstimator in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement MessageSizeEstimator Modifier and Type Class Description private static classAbstractHttp2StreamChannel.FlowControlledFrameSizeEstimatorReturns the flow-control size for DATA frames, and 9 for all other frames.Methods in io.netty.handler.codec.http2 that return MessageSizeEstimator Modifier and Type Method Description MessageSizeEstimatorAbstractHttp2StreamChannel.Http2StreamChannelConfig. getMessageSizeEstimator()Methods in io.netty.handler.codec.http2 with parameters of type MessageSizeEstimator Modifier and Type Method Description ChannelConfigAbstractHttp2StreamChannel.Http2StreamChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)
-