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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.unix Unix specific transport.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.epoll
Methods in io.netty.channel.epoll with parameters of type MessageSizeEstimator Modifier and Type Method Description EpollChannelConfigEpollChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollDatagramChannelConfigEpollDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollDomainDatagramChannelConfigEpollDomainDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollDomainSocketChannelConfigEpollDomainSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollServerChannelConfigEpollServerChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollServerSocketChannelConfigEpollServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)EpollSocketChannelConfigEpollSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator) -
Uses of MessageSizeEstimator in io.netty.channel.kqueue
Methods in io.netty.channel.kqueue with parameters of type MessageSizeEstimator Modifier and Type Method Description KQueueChannelConfigKQueueChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueDatagramChannelConfigKQueueDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueDomainDatagramChannelConfigKQueueDomainDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueDomainSocketChannelConfigKQueueDomainSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueServerChannelConfigKQueueServerChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueServerSocketChannelConfigKQueueServerSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)KQueueSocketChannelConfigKQueueSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator) -
Uses of MessageSizeEstimator in io.netty.channel.sctp
Methods in io.netty.channel.sctp with parameters of type MessageSizeEstimator Modifier and Type Method Description SctpChannelConfigDefaultSctpChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)SctpServerChannelConfigDefaultSctpServerChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)SctpChannelConfigSctpChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)SctpServerChannelConfigSctpServerChannelConfig. 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.nio
Methods in io.netty.channel.socket.nio with parameters of type MessageSizeEstimator Modifier and Type Method Description NioDomainSocketChannel.NioDomainSocketChannelConfigNioDomainSocketChannel.NioDomainSocketChannelConfig. 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.channel.unix
Methods in io.netty.channel.unix with parameters of type MessageSizeEstimator Modifier and Type Method Description DomainDatagramChannelConfigDomainDatagramChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator)DomainSocketChannelConfigDomainSocketChannelConfig. setMessageSizeEstimator(MessageSizeEstimator estimator) -
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)
-