public static interface SdkEventLoopGroup.Builder
SdkEventLoopGroup
.
All implementations of this interface are mutable and not thread safe.
Modifier and Type | Method and Description |
---|---|
SdkEventLoopGroup |
build() |
SdkEventLoopGroup.Builder |
numberOfThreads(Integer numberOfThreads)
Number of threads to use for the
EventLoopGroup . |
SdkEventLoopGroup.Builder |
threadFactory(ThreadFactory threadFactory)
ThreadFactory to create threads used by the EventLoopGroup . |
SdkEventLoopGroup.Builder numberOfThreads(Integer numberOfThreads)
EventLoopGroup
. If not set, the default
Netty thread count is used (which is double the number of available processors unless the io.netty.eventLoopThreads
system property is set.numberOfThreads
- Number of threads to use.SdkEventLoopGroup.Builder threadFactory(ThreadFactory threadFactory)
ThreadFactory
to create threads used by the EventLoopGroup
. If not set,
a generic thread factory is used.threadFactory
- ThreadFactory to use.SdkEventLoopGroup build()
Copyright © 2019. All rights reserved.