Package org.infinispan.factories.threads
Class DefaultThreadFactory
- java.lang.Object
-
- org.infinispan.factories.threads.DefaultThreadFactory
-
- All Implemented Interfaces:
ThreadFactory
public class DefaultThreadFactory extends Object implements ThreadFactory
Thread factory based on JBoss Thread's JBossThreadFactory.- Since:
- 7.0
- Author:
- Galder ZamarreƱo
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_PATTERN
-
Constructor Summary
Constructors Constructor Description DefaultThreadFactory(String name, ThreadGroup threadGroup, int initialPriority, String threadNamePattern, String node, String component)
Construct a new instance.DefaultThreadFactory(ThreadGroup threadGroup, int initialPriority, String threadNamePattern, String node, String component)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
int
initialPriority()
Thread
newThread(Runnable target)
void
setComponent(String component)
void
setNode(String node)
ThreadGroup
threadGroup()
String
threadNamePattern()
-
-
-
Field Detail
-
DEFAULT_PATTERN
public static final String DEFAULT_PATTERN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DefaultThreadFactory
public DefaultThreadFactory(ThreadGroup threadGroup, int initialPriority, String threadNamePattern, String node, String component)
Construct a new instance. The access control context of the calling thread will be the one used to create new threads if a security manager is installed.- Parameters:
threadGroup
- the thread group to assign threads to by default (may benull
)initialPriority
- the initial thread priority, ornull
to use the thread group's settingthreadNamePattern
- the name pattern string
-
DefaultThreadFactory
public DefaultThreadFactory(String name, ThreadGroup threadGroup, int initialPriority, String threadNamePattern, String node, String component)
Construct a new instance. The access control context of the calling thread will be the one used to create new threads if a security manager is installed.- Parameters:
name
- the name of this thread factory (may benull
)threadGroup
- the thread group to assign threads to by default (may benull
)initialPriority
- the initial thread priority, ornull
to use the thread group's settingthreadNamePattern
- the name pattern string
-
-
Method Detail
-
getName
public String getName()
-
setNode
public void setNode(String node)
-
setComponent
public void setComponent(String component)
-
threadNamePattern
public String threadNamePattern()
-
threadGroup
public ThreadGroup threadGroup()
-
initialPriority
public int initialPriority()
-
newThread
public Thread newThread(Runnable target)
- Specified by:
newThread
in interfaceThreadFactory
-
-