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 virtualChannelthat 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 ChannelShutdownDirectionChannelShutdownDirection. 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 voidChannelHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)TheChannelof theChannelHandlerContextwas shutdown in one direction.voidCombinedChannelDuplexHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)protected abstract voidAbstractChannel. doShutdown(ChannelShutdownDirection direction)Shutdown one direction of theChannel.protected voidAbstractServerChannel. doShutdown(ChannelShutdownDirection direction)ChannelHandlerContextChannelHandlerContext. fireChannelShutdown(ChannelShutdownDirection direction)ChannelInboundInvokerChannelInboundInvoker. fireChannelShutdown(ChannelShutdownDirection direction)AChannelwas shutdown in a specific direction.ChannelPipelineChannelPipeline. fireChannelShutdown(ChannelShutdownDirection direction)ChannelPipelineDefaultChannelPipeline. fireChannelShutdown(ChannelShutdownDirection direction)booleanAbstractServerChannel. isShutdown(ChannelShutdownDirection direction)booleanChannel. isShutdown(ChannelShutdownDirection direction)protected voidDefaultChannelPipeline. 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 voidAbstractChannel.DefaultAbstractChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)protected voidAbstractChannel. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)protected abstract voidDefaultChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, Promise<Void> promise)Shutdown the given direction of the transport and notify thePromiseonce 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 voidEmbeddedChannel. doShutdown(ChannelShutdownDirection direction)booleanEmbeddedChannel. 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 voidEpollDatagramChannel. doShutdown(ChannelShutdownDirection direction)protected voidEpollServerSocketChannel. doShutdown(ChannelShutdownDirection direction)protected voidEpollSocketChannel. doShutdown(ChannelShutdownDirection direction)booleanEpollDatagramChannel. isShutdown(ChannelShutdownDirection direction)booleanEpollServerSocketChannel. isShutdown(ChannelShutdownDirection direction)booleanEpollSocketChannel. 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 ChannelHandlerContextDelegatingChannelHandlerContext. 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 voidKQueueDatagramChannel. doShutdown(ChannelShutdownDirection direction)protected voidKQueueServerSocketChannel. doShutdown(ChannelShutdownDirection direction)protected voidKQueueSocketChannel. doShutdown(ChannelShutdownDirection direction)booleanKQueueDatagramChannel. isShutdown(ChannelShutdownDirection direction)booleanKQueueServerSocketChannel. isShutdown(ChannelShutdownDirection direction)booleanKQueueSocketChannel. 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 voidLocalChannel. doShutdown(ChannelShutdownDirection direction)booleanLocalChannel. 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 voidNioDatagramChannel. doShutdown(ChannelShutdownDirection direction)protected voidNioServerSocketChannel. doShutdown(ChannelShutdownDirection direction)protected voidNioSocketChannel. doShutdown(ChannelShutdownDirection direction)booleanNioDatagramChannel. isShutdown(ChannelShutdownDirection direction)booleanNioServerSocketChannel. isShutdown(ChannelShutdownDirection direction)booleanNioSocketChannel. 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 voidByteToMessageDecoder. 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 voidApplicationProtocolNegotiationHandler. channelShutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)
-