Uses of Class
io.netty5.channel.AbstractChannel.WriteSink
-
Packages that use AbstractChannel.WriteSink 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.WriteSink in io.netty5.channel
Methods in io.netty5.channel with parameters of type AbstractChannel.WriteSink Modifier and Type Method Description protected abstract voidAbstractChannel. doWriteNow(AbstractChannel.WriteSink writeSink)Called in a loop when writes should be performed until this method returnsfalseor there are no more messages to write.protected voidAbstractServerChannel. doWriteNow(AbstractChannel.WriteSink writeSink) -
Uses of AbstractChannel.WriteSink in io.netty5.channel.embedded
Methods in io.netty5.channel.embedded with parameters of type AbstractChannel.WriteSink Modifier and Type Method Description protected voidEmbeddedChannel. doWriteNow(AbstractChannel.WriteSink writeSink) -
Uses of AbstractChannel.WriteSink in io.netty5.channel.local
Methods in io.netty5.channel.local with parameters of type AbstractChannel.WriteSink Modifier and Type Method Description protected voidLocalChannel. doWriteNow(AbstractChannel.WriteSink writeSink) -
Uses of AbstractChannel.WriteSink in io.netty5.channel.nio
Methods in io.netty5.channel.nio with parameters of type AbstractChannel.WriteSink Modifier and Type Method Description protected voidAbstractNioByteChannel. doWriteNow(AbstractChannel.WriteSink writeSink) -
Uses of AbstractChannel.WriteSink in io.netty5.channel.socket.nio
Methods in io.netty5.channel.socket.nio with parameters of type AbstractChannel.WriteSink Modifier and Type Method Description protected voidNioDatagramChannel. doWriteNow(AbstractChannel.WriteSink writeSink)protected voidNioServerSocketChannel. doWriteNow(AbstractChannel.WriteSink writeHandle)protected voidNioSocketChannel. doWriteNow(AbstractChannel.WriteSink writeSink)
-