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.internal Internal utilities for channel implementations.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). -
-
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 io.netty5.util.concurrent.Future<Void>Channel. shutdown(ChannelShutdownDirection direction)default io.netty5.util.concurrent.Future<Void>ChannelHandler. shutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)Called once a shutdown operation was requested and should be executed.io.netty5.util.concurrent.Future<Void>ChannelOutboundInvoker. shutdown(ChannelShutdownDirection direction)Request shutdown one direction of theChanneland notify theFutureonce the operation completes, either because the operation was successful or because of an error.io.netty5.util.concurrent.Future<Void>CombinedChannelDuplexHandler. shutdown(ChannelHandlerContext ctx, ChannelShutdownDirection direction)io.netty5.util.concurrent.Future<Void>DefaultChannelPipeline. shutdown(ChannelShutdownDirection direction)protected voidAbstractChannel.DefaultAbstractChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, io.netty5.util.concurrent.Promise<Void> promise)protected abstract voidDefaultChannelPipeline. shutdownTransport(ChannelShutdownDirection direction, io.netty5.util.concurrent.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.internal
Methods in io.netty5.channel.internal with parameters of type ChannelShutdownDirection Modifier and Type Method Description ChannelHandlerContextDelegatingChannelHandlerContext. fireChannelShutdown(ChannelShutdownDirection direction)io.netty5.util.concurrent.Future<Void>DelegatingChannelHandlerContext. shutdown(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)
-