Uses of Class
io.netty5.channel.AbstractChannel.ReadSink
-
Packages that use AbstractChannel.ReadSink 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.embedded A virtualChannelthat helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of AbstractChannel.ReadSink in io.netty5.channel
Methods in io.netty5.channel with parameters of type AbstractChannel.ReadSink Modifier and Type Method Description protected abstract booleanAbstractChannel. doReadNow(AbstractChannel.ReadSink readSink)Try to read a message from the transport and dispatch it viaprocessRead(int, int, Object). -
Uses of AbstractChannel.ReadSink in io.netty5.channel.embedded
Methods in io.netty5.channel.embedded with parameters of type AbstractChannel.ReadSink Modifier and Type Method Description protected booleanEmbeddedChannel. doReadNow(AbstractChannel.ReadSink readSink) -
Uses of AbstractChannel.ReadSink in io.netty5.channel.local
Methods in io.netty5.channel.local with parameters of type AbstractChannel.ReadSink Modifier and Type Method Description protected booleanLocalChannel. doReadNow(AbstractChannel.ReadSink readSink)protected booleanLocalServerChannel. doReadNow(AbstractChannel.ReadSink readSink) -
Uses of AbstractChannel.ReadSink in io.netty5.channel.nio
Methods in io.netty5.channel.nio with parameters of type AbstractChannel.ReadSink Modifier and Type Method Description protected abstract intAbstractNioMessageChannel. doReadMessages(AbstractChannel.ReadSink readSink)Read messages into the given array and return the amount which was read.protected booleanAbstractNioByteChannel. doReadNow(AbstractChannel.ReadSink readSink)protected booleanAbstractNioMessageChannel. doReadNow(AbstractChannel.ReadSink readSink) -
Uses of AbstractChannel.ReadSink in io.netty5.channel.socket.nio
Methods in io.netty5.channel.socket.nio with parameters of type AbstractChannel.ReadSink Modifier and Type Method Description protected intNioDatagramChannel. doReadMessages(AbstractChannel.ReadSink readSink)protected intNioServerSocketChannel. doReadMessages(AbstractChannel.ReadSink readSink)
-