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). -
-
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.Fields 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)DuplexChannelConfigDuplexChannelConfig. 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 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.
-