@Singleton @Requires(classes=io.netty.channel.epoll.Epoll.class, condition=EpollAvailabilityCondition.class) @Internal @Named(value="native") public class EpollEventLoopGroupFactory extends Object implements EventLoopGroupFactory
NATIVE| Constructor and Description | 
|---|
| EpollEventLoopGroupFactory() | 
| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends io.netty.channel.socket.SocketChannel> | clientSocketChannelClass(EventLoopGroupConfiguration configuration)Returns the client channel class. | 
| io.netty.channel.socket.SocketChannel | clientSocketChannelInstance(EventLoopGroupConfiguration configuration)Returns the client channel class instance. | 
| io.netty.channel.EventLoopGroup | createEventLoopGroup(int threads,
                    Executor executor,
                    Integer ioRatio)Creates an EpollEventLoopGroup. | 
| io.netty.channel.EventLoopGroup | createEventLoopGroup(int threads,
                    ThreadFactory threadFactory,
                    Integer ioRatio)Creates an EpollEventLoopGroup. | 
| Class<? extends io.netty.channel.unix.ServerDomainSocketChannel> | domainServerSocketChannelClass()Returns the domain socket server channel class. | 
| io.netty.channel.ServerChannel | domainServerSocketChannelInstance(EventLoopGroupConfiguration configuration)Returns the domain socket server channel class. | 
| boolean | isNative() | 
| Class<? extends io.netty.channel.socket.ServerSocketChannel> | serverSocketChannelClass()Returns the server channel class. | 
| io.netty.channel.epoll.EpollServerSocketChannel | serverSocketChannelInstance(EventLoopGroupConfiguration configuration)Returns the server channel class instance. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcreateEventLoopGroup, createEventLoopGroup, domainServerSocketChannelClass, serverSocketChannelClasspublic io.netty.channel.EventLoopGroup createEventLoopGroup(int threads,
                                                            ThreadFactory threadFactory,
                                                            @Nullable
                                                            Integer ioRatio)
createEventLoopGroup in interface EventLoopGroupFactorythreads - The number of threads to use.threadFactory - The thread factory.ioRatio - The io ratio.public io.netty.channel.EventLoopGroup createEventLoopGroup(int threads,
                                                            Executor executor,
                                                            @Nullable
                                                            Integer ioRatio)
createEventLoopGroup in interface EventLoopGroupFactorythreads - The number of threads to use.executor - An Executor.ioRatio - The io ratio.public Class<? extends io.netty.channel.socket.ServerSocketChannel> serverSocketChannelClass()
serverSocketChannelClass in interface EventLoopGroupFactorypublic Class<? extends io.netty.channel.unix.ServerDomainSocketChannel> domainServerSocketChannelClass() throws UnsupportedOperationException
EventLoopGroupFactorydomainServerSocketChannelClass in interface EventLoopGroupFactoryUnsupportedOperationException - if domain sockets are not supported.@NonNull public io.netty.channel.epoll.EpollServerSocketChannel serverSocketChannelInstance(@Nullable EventLoopGroupConfiguration configuration)
EventLoopGroupFactoryserverSocketChannelInstance in interface EventLoopGroupFactoryconfiguration - The configurationpublic io.netty.channel.ServerChannel domainServerSocketChannelInstance(@Nullable EventLoopGroupConfiguration configuration)
EventLoopGroupFactorydomainServerSocketChannelInstance in interface EventLoopGroupFactoryconfiguration - The configuration@NonNull public Class<? extends io.netty.channel.socket.SocketChannel> clientSocketChannelClass(@Nullable EventLoopGroupConfiguration configuration)
EventLoopGroupFactoryclientSocketChannelClass in interface EventLoopGroupFactoryconfiguration - The configurationpublic io.netty.channel.socket.SocketChannel clientSocketChannelInstance(EventLoopGroupConfiguration configuration)
EventLoopGroupFactoryclientSocketChannelInstance in interface EventLoopGroupFactoryconfiguration - The configurationpublic boolean isNative()
isNative in interface EventLoopGroupFactory