Uses of Class
io.netty5.channel.ChannelShutdownDirection
-
Packages that use ChannelShutdownDirection 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 virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.internal Internal utilities for channel implementations.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.local A virtual transport that enables the communication between the two parties in the same virtual machine.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.handler.codec Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.io.netty5.handler.ssl -
-
Uses of ChannelShutdownDirection in io.netty5.channel
Methods in io.netty5.channel that return ChannelShutdownDirection Modifier and Type Method Description static ChannelShutdownDirection
ChannelShutdownDirection. valueOf(String name)
Returns the enum constant of this type with the specified name.static ChannelShutdownDirection[]
ChannelShutdownDirection. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty5.channel with parameters of type ChannelShutdownDirection Modifier and Type Method Description default void
ChannelHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
TheChannel
of theChannelHandlerContext
was shutdown in one direction.void
CombinedChannelDuplexHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
protected abstract void
AbstractChannel. doShutdown(ChannelShutdownDirection direction)
Shutdown one direction of theChannel
.protected void
AbstractServerChannel. doShutdown(ChannelShutdownDirection direction)
ChannelHandlerContext
ChannelHandlerContext. fireChannelShutdown(ChannelShutdownDirection direction)
ChannelInboundInvoker
ChannelInboundInvoker. fireChannelShutdown(ChannelShutdownDirection direction)
AChannel
was shutdown in a specific direction.ChannelPipeline
ChannelPipeline. fireChannelShutdown(ChannelShutdownDirection direction)
ChannelPipeline
DefaultChannelPipeline. fireChannelShutdown(ChannelShutdownDirection direction)
boolean
AbstractServerChannel. isShutdown(ChannelShutdownDirection direction)
boolean
Channel. isShutdown(ChannelShutdownDirection direction)
protected void
DefaultChannelPipeline. onUnhandledInboundChannelShutdown(ChannelShutdownDirection direction)
Called once theChannelHandler.channelShutdown(ChannelHandlerContext, ChannelShutdownDirection)
event hit the end of theChannelPipeline
.default Future<Void>
Channel. shutdown(ChannelShutdownDirection direction)
default Future<Void>
ChannelHandler. shutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
Called once a shutdown operation was requested and should be executed.Future<Void>
ChannelOutboundInvoker. shutdown(ChannelShutdownDirection direction)
Future<Void>
CombinedChannelDuplexHandler. shutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
Future<Void>
DefaultChannelPipeline. shutdown(ChannelShutdownDirection direction)
protected void
AbstractChannel.DefaultAbstractChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)
protected void
AbstractChannel. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)
protected abstract void
DefaultChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)
Shutdown the given direction of the transport and notify thePromise
once the operation was completed. -
Uses of ChannelShutdownDirection in io.netty5.channel.embedded
Methods in io.netty5.channel.embedded with parameters of type ChannelShutdownDirection Modifier and Type Method Description protected void
EmbeddedChannel. doShutdown(ChannelShutdownDirection direction)
boolean
EmbeddedChannel. isShutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll with parameters of type ChannelShutdownDirection Modifier and Type Method Description protected void
EpollDatagramChannel. doShutdown(ChannelShutdownDirection direction)
protected void
EpollServerSocketChannel. doShutdown(ChannelShutdownDirection direction)
protected void
EpollSocketChannel. doShutdown(ChannelShutdownDirection direction)
boolean
EpollDatagramChannel. isShutdown(ChannelShutdownDirection direction)
boolean
EpollServerSocketChannel. isShutdown(ChannelShutdownDirection direction)
boolean
EpollSocketChannel. isShutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.channel.internal
Methods in io.netty5.channel.internal with parameters of type ChannelShutdownDirection Modifier and Type Method Description ChannelHandlerContext
DelegatingChannelHandlerContext. fireChannelShutdown(ChannelShutdownDirection direction)
Future<Void>
DelegatingChannelHandlerContext. shutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue with parameters of type ChannelShutdownDirection Modifier and Type Method Description protected void
KQueueDatagramChannel. doShutdown(ChannelShutdownDirection direction)
protected void
KQueueServerSocketChannel. doShutdown(ChannelShutdownDirection direction)
protected void
KQueueSocketChannel. doShutdown(ChannelShutdownDirection direction)
boolean
KQueueDatagramChannel. isShutdown(ChannelShutdownDirection direction)
boolean
KQueueServerSocketChannel. isShutdown(ChannelShutdownDirection direction)
boolean
KQueueSocketChannel. isShutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.channel.local
Methods in io.netty5.channel.local with parameters of type ChannelShutdownDirection Modifier and Type Method Description protected void
LocalChannel. doShutdown(ChannelShutdownDirection direction)
boolean
LocalChannel. isShutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.channel.socket.nio
Methods in io.netty5.channel.socket.nio with parameters of type ChannelShutdownDirection Modifier and Type Method Description protected void
NioDatagramChannel. doShutdown(ChannelShutdownDirection direction)
protected void
NioServerSocketChannel. doShutdown(ChannelShutdownDirection direction)
protected void
NioSocketChannel. doShutdown(ChannelShutdownDirection direction)
boolean
NioDatagramChannel. isShutdown(ChannelShutdownDirection direction)
boolean
NioServerSocketChannel. isShutdown(ChannelShutdownDirection direction)
boolean
NioSocketChannel. isShutdown(ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.handler.codec
Methods in io.netty5.handler.codec with parameters of type ChannelShutdownDirection Modifier and Type Method Description void
ByteToMessageDecoder. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
-
Uses of ChannelShutdownDirection in io.netty5.handler.ssl
Methods in io.netty5.handler.ssl with parameters of type ChannelShutdownDirection Modifier and Type Method Description void
ApplicationProtocolNegotiationHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
-