Uses of Interface
io.netty.channel.FileRegion
-
Packages that use FileRegion 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.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.udt.nio UDT Transport for NIO Channels. -
-
Uses of FileRegion in io.netty.channel
Classes in io.netty.channel that implement FileRegion Modifier and Type Class Description class
DefaultFileRegion
Methods in io.netty.channel that return FileRegion Modifier and Type Method Description FileRegion
DefaultFileRegion. retain()
FileRegion
DefaultFileRegion. retain(int increment)
FileRegion
FileRegion. retain()
FileRegion
FileRegion. retain(int increment)
FileRegion
DefaultFileRegion. touch()
FileRegion
DefaultFileRegion. touch(java.lang.Object hint)
FileRegion
FileRegion. touch()
FileRegion
FileRegion. touch(java.lang.Object hint)
-
Uses of FileRegion in io.netty.channel.nio
Methods in io.netty.channel.nio with parameters of type FileRegion Modifier and Type Method Description protected abstract long
AbstractNioByteChannel. doWriteFileRegion(FileRegion region)
Write aFileRegion
-
Uses of FileRegion in io.netty.channel.oio
Methods in io.netty.channel.oio with parameters of type FileRegion Modifier and Type Method Description protected abstract void
AbstractOioByteChannel. doWriteFileRegion(FileRegion region)
Deprecated.Write the data which is hold by theFileRegion
to the underlying Socket.protected void
OioByteStreamChannel. doWriteFileRegion(FileRegion region)
Deprecated. -
Uses of FileRegion in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio with parameters of type FileRegion Modifier and Type Method Description protected long
NioDomainSocketChannel. doWriteFileRegion(FileRegion region)
protected long
NioSocketChannel. doWriteFileRegion(FileRegion region)
-
Uses of FileRegion in io.netty.channel.udt.nio
Methods in io.netty.channel.udt.nio with parameters of type FileRegion Modifier and Type Method Description protected long
NioUdtByteConnectorChannel. doWriteFileRegion(FileRegion region)
Deprecated.
-