Uses of Class
io.netty.channel.ChannelOption
-
Packages that use ChannelOption Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization.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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.unix Unix specific transport.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelOption in io.netty.bootstrap
Methods in io.netty.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.netty.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.netty.channel
Methods in io.netty.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.netty.channel that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>ChannelConfig. getOptions()Return all setChannelOption's.Map<ChannelOption<?>,Object>DefaultChannelConfig. getOptions()protected Map<ChannelOption<?>,Object>DefaultChannelConfig. getOptions(Map<ChannelOption<?>,Object> result, ChannelOption<?>... options)Methods in io.netty.channel with parameters of type ChannelOption Modifier and Type Method Description <T> TChannelConfig. getOption(ChannelOption<T> option)Return the value of the givenChannelOption<T> TDefaultChannelConfig. getOption(ChannelOption<T> option)protected Map<ChannelOption<?>,Object>DefaultChannelConfig. getOptions(Map<ChannelOption<?>,Object> result, ChannelOption<?>... options)<T> booleanChannelConfig. setOption(ChannelOption<T> option, T value)Sets a configuration property with the specified name and value.<T> booleanDefaultChannelConfig. setOption(ChannelOption<T> option, T value)protected <T> voidDefaultChannelConfig. validate(ChannelOption<T> option, T value)Method parameters in io.netty.channel with type arguments of type ChannelOption Modifier and Type Method Description protected Map<ChannelOption<?>,Object>DefaultChannelConfig. getOptions(Map<ChannelOption<?>,Object> result, ChannelOption<?>... options)booleanChannelConfig. setOptions(Map<ChannelOption<?>,?> options)Sets the configuration properties from the specifiedMap.booleanDefaultChannelConfig. setOptions(Map<ChannelOption<?>,?> options) -
Uses of ChannelOption in io.netty.channel.epoll
Subclasses of ChannelOption in io.netty.channel.epoll Modifier and Type Class Description classEpollChannelOption<T>Methods in io.netty.channel.epoll that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>EpollChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollDatagramChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollDomainDatagramChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollDomainSocketChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollServerChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollServerSocketChannelConfig. getOptions()Map<ChannelOption<?>,Object>EpollSocketChannelConfig. getOptions()Methods in io.netty.channel.epoll with parameters of type ChannelOption Modifier and Type Method Description <T> TEpollChannelConfig. getOption(ChannelOption<T> option)<T> TEpollDatagramChannelConfig. getOption(ChannelOption<T> option)<T> TEpollDomainDatagramChannelConfig. getOption(ChannelOption<T> option)<T> TEpollDomainSocketChannelConfig. getOption(ChannelOption<T> option)<T> TEpollServerChannelConfig. getOption(ChannelOption<T> option)<T> TEpollServerSocketChannelConfig. getOption(ChannelOption<T> option)<T> TEpollSocketChannelConfig. getOption(ChannelOption<T> option)<T> booleanEpollChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollDatagramChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollDomainDatagramChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollDomainSocketChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollServerChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollServerSocketChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanEpollSocketChannelConfig. setOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty.channel.kqueue
Subclasses of ChannelOption in io.netty.channel.kqueue Modifier and Type Class Description classKQueueChannelOption<T>Fields in io.netty.channel.kqueue declared as ChannelOption Modifier and Type Field Description static ChannelOption<Boolean>KQueueChannelOption. RCV_ALLOC_TRANSPORT_PROVIDES_GUESSIf this istruethen theRecvByteBufAllocator.Handle.guess()will be overridden to always attempt to read as many bytes as kqueue says are available.static ChannelOption<AcceptFilter>KQueueChannelOption. SO_ACCEPTFILTERstatic ChannelOption<Integer>KQueueChannelOption. SO_SNDLOWATstatic ChannelOption<Boolean>KQueueChannelOption. TCP_NOPUSHMethods in io.netty.channel.kqueue that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>KQueueChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueDatagramChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueDomainDatagramChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueDomainSocketChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueServerChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueServerSocketChannelConfig. getOptions()Map<ChannelOption<?>,Object>KQueueSocketChannelConfig. getOptions()Methods in io.netty.channel.kqueue with parameters of type ChannelOption Modifier and Type Method Description <T> TKQueueChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueDatagramChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueDomainDatagramChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueDomainSocketChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueServerChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueServerSocketChannelConfig. getOption(ChannelOption<T> option)<T> TKQueueSocketChannelConfig. getOption(ChannelOption<T> option)<T> booleanKQueueChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueDatagramChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueDomainDatagramChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueDomainSocketChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueServerChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueServerSocketChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanKQueueSocketChannelConfig. setOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty.channel.socket
Methods in io.netty.channel.socket that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>DefaultDatagramChannelConfig. getOptions()Map<ChannelOption<?>,Object>DefaultServerSocketChannelConfig. getOptions()Map<ChannelOption<?>,Object>DefaultSocketChannelConfig. getOptions()Methods in io.netty.channel.socket with parameters of type ChannelOption Modifier and Type Method Description <T> TDefaultDatagramChannelConfig. getOption(ChannelOption<T> option)<T> TDefaultServerSocketChannelConfig. getOption(ChannelOption<T> option)<T> TDefaultSocketChannelConfig. getOption(ChannelOption<T> option)<T> booleanDefaultDatagramChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanDefaultServerSocketChannelConfig. setOption(ChannelOption<T> option, T value)<T> booleanDefaultSocketChannelConfig. setOption(ChannelOption<T> option, T value) -
Uses of ChannelOption in io.netty.channel.socket.nio
Subclasses of ChannelOption in io.netty.channel.socket.nio Modifier and Type Class Description classNioChannelOption<T>ProvidesChannelOptionover a givenSocketOptionwhich is then passed through the underlyingNetworkChannel.Methods in io.netty.channel.socket.nio that return ChannelOption Modifier and Type Method Description static <T> ChannelOption<T>NioChannelOption. of(SocketOption<T> option)Returns aChannelOptionfor the givenSocketOption. -
Uses of ChannelOption in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio that return types with arguments of type ChannelOption Modifier and Type Method Description Map<ChannelOption<?>,Object>DefaultOioServerSocketChannelConfig. getOptions()Deprecated.Map<ChannelOption<?>,Object>DefaultOioSocketChannelConfig. getOptions()Deprecated.Methods in io.netty.channel.socket.oio with parameters of type ChannelOption Modifier and Type Method Description <T> TDefaultOioServerSocketChannelConfig. getOption(ChannelOption<T> option)Deprecated.<T> TDefaultOioSocketChannelConfig. getOption(ChannelOption<T> option)Deprecated.<T> booleanDefaultOioServerSocketChannelConfig. setOption(ChannelOption<T> option, T value)Deprecated.<T> booleanDefaultOioSocketChannelConfig. setOption(ChannelOption<T> option, T value)Deprecated. -
Uses of ChannelOption in io.netty.channel.unix
Subclasses of ChannelOption in io.netty.channel.unix Modifier and Type Class Description classUnixChannelOption<T>Fields in io.netty.channel.unix declared as ChannelOption Modifier and Type Field Description static ChannelOption<DomainSocketReadMode>UnixChannelOption. DOMAIN_SOCKET_READ_MODEstatic ChannelOption<Boolean>UnixChannelOption. SO_REUSEPORT -
Uses of ChannelOption in io.netty.handler.codec.http2
Methods in io.netty.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.
-