Uses of Interface
io.netty5.channel.ReadHandleFactory
-
Packages that use ReadHandleFactory Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of ReadHandleFactory in io.netty5.channel
Classes in io.netty5.channel that implement ReadHandleFactory Modifier and Type Class Description classAdaptiveReadHandleFactoryTheReadHandleFactorythat automatically increases and decreases the predicted buffer size on feed back.classFixedReadHandleFactoryTheReadHandleFactorythat always yields the same buffer size prediction.classMaxMessagesReadHandleFactoryBase implementation ofReadHandleFactorywhich allows to limit the number of messages read per read loop.classServerChannelReadHandleFactoryMaxMessagesReadHandleFactoryimplementation which should be used forServerChannels.Fields in io.netty5.channel with type parameters of type ReadHandleFactory Modifier and Type Field Description static ChannelOption<ReadHandleFactory>ChannelOption. READ_HANDLE_FACTORYConstructors in io.netty5.channel with parameters of type ReadHandleFactory Constructor Description AbstractChannel(P parent, EventLoop eventLoop, boolean supportingDisconnect, ReadHandleFactory defaultReadHandleFactory, WriteHandleFactory defaultWriteHandleFactory)Creates a new instance.AbstractChannel(P parent, EventLoop eventLoop, boolean supportingDisconnect, ReadHandleFactory defaultReadHandleFactory, WriteHandleFactory defaultWriteHandleFactory, ChannelId id)Creates a new instance. -
Uses of ReadHandleFactory in io.netty5.channel.nio
Constructors in io.netty5.channel.nio with parameters of type ReadHandleFactory Constructor Description AbstractNioChannel(P parent, EventLoop eventLoop, boolean supportingDisconnect, ReadHandleFactory defaultReadHandleFactory, WriteHandleFactory defaultWriteHandleFactory, SelectableChannel ch, int readInterestOp)Create a new instanceAbstractNioMessageChannel(P parent, EventLoop eventLoop, boolean supportingDisconnect, ReadHandleFactory defaultReadHandleFactory, WriteHandleFactory defaultWriteHandleFactory, SelectableChannel ch, int readInterestOp)
-