static BasicThreadFactory.Builder |
BasicThreadFactory.builder() |
Creates a new builder.
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.daemon() |
Sets the daemon flag for the new BasicThreadFactory to true causing a new thread factory to create daemon threads.
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.daemon(boolean daemon) |
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.namingPattern(java.lang.String namingPattern) |
Sets the naming pattern to be used by the new
BasicThreadFactory .
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.priority(int priority) |
Sets the priority for the threads created by the new
BasicThreadFactory .
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.uncaughtExceptionHandler(java.lang.Thread.UncaughtExceptionHandler exceptionHandler) |
Sets the uncaught exception handler for the threads created by the
new BasicThreadFactory .
|
BasicThreadFactory.Builder |
BasicThreadFactory.Builder.wrappedFactory(java.util.concurrent.ThreadFactory factory) |
Sets the ThreadFactory to be wrapped by the new
BasicThreadFactory .
|