Java com.google.common.util.concurrent ThreadFactoryBuilder fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.util.concurrent ThreadFactoryBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.util.concurrent ThreadFactoryBuilder.

The text is from its open source code.

Constructor

ThreadFactoryBuilder()
Creates a new ThreadFactory builder.

Method

ThreadFactorybuild()
Returns a new thread factory using the options supplied during the building process.
ThreadFactoryBuildersetDaemon(boolean daemon)
Sets daemon or not for new threads created with this ThreadFactory.
ThreadFactoryBuildersetNameFormat(String nameFormat)
Sets the naming format to use when naming threads ( Thread#setName ) which are created with this ThreadFactory.
ThreadFactoryBuildersetPriority(int priority)
Sets the priority for new threads created with this ThreadFactory.
ThreadFactoryBuildersetThreadFactory(ThreadFactory backingThreadFactory)
Sets the backing ThreadFactory for new threads created with this ThreadFactory.
ThreadFactoryBuildersetUncaughtExceptionHandler(UncaughtExceptionHandler uncaughtExceptionHandler)
Sets the UncaughtExceptionHandler for new threads created with this ThreadFactory.