Uses of Class
io.netty5.channel.ChannelOption
-
Packages that use ChannelOption Package Description io.netty5.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.unix Unix specific transport.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelOption in io.netty5.bootstrap
Methods in io.netty5.bootstrap that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>ServerBootstrapConfig. childOptions()Returns a copy of the configured options which will be used for the child channels.Map<ChannelOption<?>,Object>AbstractBootstrapConfig. options()Returns a copy of the configured options.Methods in io.netty5.bootstrap with parameters of type ChannelOption Modifier and Type Method Description <T> ServerBootstrapServerBootstrap. childOption(ChannelOption<T> childOption, T value)Allow to specify aChannelOptionwhich is used for theChannelinstances once they get created (after the acceptor accepted theChannel).<T> BAbstractBootstrap. option(ChannelOption<T> option, T value)Allow to specify aChannelOptionwhich is used for theChannelinstances once they got created. -
Uses of ChannelOption in io.netty5.channel
Methods in io.netty5.channel that return ChannelOption Modifier and Type Method Description static <T> ChannelOption<T>ChannelOption. newInstance(String name)Deprecated.usevalueOf(String).static <T> ChannelOption<T>ChannelOption. valueOf(Class<?> firstNameComponent, String secondNameComponent)static <T> ChannelOption<T>ChannelOption. valueOf(String name)Returns theChannelOptionof the specified name.Methods in io.netty5.channel that return types with arguments of type ChannelOption Modifier and Type Method Description protected static Set<ChannelOption<?>>AbstractChannel. newSupportedIdentityOptionsSet(ChannelOption<?>... options)Methods in io.netty5.channel with parameters of type ChannelOption Modifier and Type Method Description protected <T> TAbstractChannel. getExtendedOption(ChannelOption<T> option)Override to add support for moreChannelOptions.<T> TAbstractChannel. getOption(ChannelOption<T> option)<T> TChannel. getOption(ChannelOption<T> option)Return the value of the givenChannelOptionprotected booleanAbstractChannel. isExtendedOptionSupported(ChannelOption<?> option)Override to add support for moreChannelOptions.booleanAbstractChannel. isOptionSupported(ChannelOption<?> option)booleanChannel. isOptionSupported(ChannelOption<?> option)protected static Set<ChannelOption<?>>AbstractChannel. newSupportedIdentityOptionsSet(ChannelOption<?>... options)protected <T> voidAbstractChannel. setExtendedOption(ChannelOption<T> option, T value)Override to add support for moreChannelOptions.<T> ChannelAbstractChannel. setOption(ChannelOption<T> option, T value)<T> ChannelChannel. setOption(ChannelOption<T> option, T value)Sets a configuration property with the specified name and value.protected <T> voidAbstractChannel. validate(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty5.channel.epoll
Subclasses of ChannelOption in io.netty5.channel.epoll Modifier and Type Class Description classEpollChannelOption<T>Fields in io.netty5.channel.epoll declared as ChannelOption Modifier and Type Field Description static ChannelOption<Boolean>EpollChannelOption. IP_FREEBINDstatic ChannelOption<Boolean>EpollChannelOption. IP_RECVORIGDSTADDRstatic ChannelOption<Boolean>EpollChannelOption. IP_TRANSPARENTstatic ChannelOption<Integer>EpollChannelOption. MAX_DATAGRAM_PAYLOAD_SIZEstatic ChannelOption<Integer>EpollChannelOption. SO_BUSY_POLLstatic ChannelOption<Boolean>EpollChannelOption. TCP_CORKstatic ChannelOption<Integer>EpollChannelOption. TCP_DEFER_ACCEPTstatic ChannelOption<Integer>EpollChannelOption. TCP_FASTOPENDeprecated.UseTCP_FASTOPENinstead.static ChannelOption<Boolean>EpollChannelOption. TCP_FASTOPEN_CONNECTDeprecated.UseTCP_FASTOPEN_CONNECTinstead.static ChannelOption<EpollTcpInfo>EpollChannelOption. TCP_INFOReturns theTCP_INFOfor the current socket.static ChannelOption<Integer>EpollChannelOption. TCP_KEEPCNTstatic ChannelOption<Integer>EpollChannelOption. TCP_KEEPIDLEstatic ChannelOption<Integer>EpollChannelOption. TCP_KEEPINTVLstatic ChannelOption<Map<InetAddress,byte[]>>EpollChannelOption. TCP_MD5SIGstatic ChannelOption<Long>EpollChannelOption. TCP_NOTSENT_LOWATstatic ChannelOption<Boolean>EpollChannelOption. TCP_QUICKACKstatic ChannelOption<Integer>EpollChannelOption. TCP_USER_TIMEOUTstatic ChannelOption<Boolean>EpollChannelOption. UDP_GROMethods in io.netty5.channel.epoll with parameters of type ChannelOption Modifier and Type Method Description protected <T> TEpollDatagramChannel. getExtendedOption(ChannelOption<T> option)protected <T> TEpollServerSocketChannel. getExtendedOption(ChannelOption<T> option)protected <T> TEpollSocketChannel. getExtendedOption(ChannelOption<T> option)protected booleanEpollDatagramChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanEpollServerSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanEpollSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected <T> voidEpollDatagramChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidEpollServerSocketChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidEpollSocketChannel. setExtendedOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty5.channel.kqueue
Subclasses of ChannelOption in io.netty5.channel.kqueue Modifier and Type Class Description classKQueueChannelOption<T>Fields in io.netty5.channel.kqueue declared as ChannelOption Modifier and Type Field Description static ChannelOption<AcceptFilter>KQueueChannelOption. SO_ACCEPTFILTERstatic ChannelOption<Integer>KQueueChannelOption. SO_SNDLOWATstatic ChannelOption<Boolean>KQueueChannelOption. TCP_NOPUSHMethods in io.netty5.channel.kqueue with parameters of type ChannelOption Modifier and Type Method Description protected <T> TKQueueDatagramChannel. getExtendedOption(ChannelOption<T> option)protected <T> TKQueueServerSocketChannel. getExtendedOption(ChannelOption<T> option)protected <T> TKQueueSocketChannel. getExtendedOption(ChannelOption<T> option)protected booleanKQueueDatagramChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanKQueueServerSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanKQueueSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected <T> voidKQueueDatagramChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidKQueueServerSocketChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidKQueueSocketChannel. setExtendedOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty5.channel.socket.nio
Subclasses of ChannelOption in io.netty5.channel.socket.nio Modifier and Type Class Description classNioChannelOption<T>ProvidesChannelOptionover a givenSocketOptionwhich is then passed through the underlyingNetworkChannel.Methods in io.netty5.channel.socket.nio that return ChannelOption Modifier and Type Method Description static <T> ChannelOption<T>NioChannelOption. of(SocketOption<T> option)Returns aChannelOptionfor the givenSocketOption.Methods in io.netty5.channel.socket.nio with parameters of type ChannelOption Modifier and Type Method Description protected <T> TNioDatagramChannel. getExtendedOption(ChannelOption<T> option)protected <T> TNioServerSocketChannel. getExtendedOption(ChannelOption<T> option)protected <T> TNioSocketChannel. getExtendedOption(ChannelOption<T> option)protected booleanNioDatagramChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanNioServerSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected booleanNioSocketChannel. isExtendedOptionSupported(ChannelOption<?> option)protected <T> voidNioDatagramChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidNioServerSocketChannel. setExtendedOption(ChannelOption<T> option, T value)protected <T> voidNioSocketChannel. setExtendedOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty5.channel.unix
Subclasses of ChannelOption in io.netty5.channel.unix Modifier and Type Class Description classGenericUnixChannelOption<T>A generic socket option.classIntegerUnixChannelOptionclassRawUnixChannelOptionclassUnixChannelOption<T>Fields in io.netty5.channel.unix declared as ChannelOption Modifier and Type Field Description static ChannelOption<DomainSocketReadMode>UnixChannelOption. DOMAIN_SOCKET_READ_MODEstatic ChannelOption<PeerCredentials>UnixChannelOption. SO_PEERCREDReturns the unix credentials (uid, gid, pid) of the peer SO_PEERCREDstatic ChannelOption<Boolean>UnixChannelOption. SO_REUSEPORT -
Uses of ChannelOption in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 with parameters of type ChannelOption Modifier and Type Method Description <T> Http2StreamChannelBootstrapHttp2StreamChannelBootstrap. option(ChannelOption<T> option, T value)Allow to specify aChannelOptionwhich is used for theHttp2StreamChannelinstances once they got created.
-