Package com.tangosol.util
Interface ThreadFactory
-
- All Superinterfaces:
ThreadFactory
- All Known Implementing Classes:
DaemonThreadFactory
public interface ThreadFactory extends ThreadFactory
Factory interface for Thread creation.- Author:
- mf 2006.09.06
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Thread
makeThread(ThreadGroup group, Runnable runnable, String sName)
Create a Thread with the specified group, runnable, and name.-
Methods inherited from interface java.util.concurrent.ThreadFactory
newThread
-
-
-
-
Method Detail
-
makeThread
Thread makeThread(ThreadGroup group, Runnable runnable, String sName)
Create a Thread with the specified group, runnable, and name.- Parameters:
group
- (optional) the thread's thread grouprunnable
- (optional) the thread's runnablesName
- (optional) the thread's name- Returns:
- a new thread using the specified parameters
-
-