Java org.springframework.scheduling.concurrent CustomizableThreadFactory fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.scheduling.concurrent CustomizableThreadFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.scheduling.concurrent CustomizableThreadFactory.

The text is from its open source code.

Subclass

org.springframework.scheduling.concurrent.CustomizableThreadFactory has subclasses.
Click this link to see all its subclasses.

Constructor

CustomizableThreadFactory()
Create a new CustomizableThreadFactory with default thread name prefix.
CustomizableThreadFactory(String threadNamePrefix)
Create a new CustomizableThreadFactory with the given thread name prefix.

Method

voidsetDaemon(boolean daemon)
Set whether this factory is supposed to create daemon threads, just executing as long as the application itself is running.
voidsetThreadGroup(@Nullable ThreadGroup threadGroup)
Specify the thread group that threads should be created in.
voidsetThreadGroupName(String name)
Specify the name of the thread group that threads should be created in.
voidsetThreadPriority(int threadPriority)
Set the priority of the threads that this factory creates.