Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


com.tangosol.util
Interface ThreadFactory

All Superinterfaces:
java.util.concurrent.ThreadFactory

public interface ThreadFactory
extends java.util.concurrent.ThreadFactory

Factory interface for Thread creation.

Author:
mf 2006.09.06

Method Summary
 java.lang.Thread makeThread(java.lang.ThreadGroup group, java.lang.Runnable runnable, java.lang.String sName)
          Create a Thread with the specified group, runnable, and name.

 

Methods inherited from interface java.util.concurrent.ThreadFactory
newThread

 

Method Detail

makeThread

java.lang.Thread makeThread(java.lang.ThreadGroup group,
                            java.lang.Runnable runnable,
                            java.lang.String sName)
Create a Thread with the specified group, runnable, and name.
Parameters:
group - (optional) the thread's thread group
runnable - (optional) the thread's runnable
sName - (optional) the thread's name
Returns:
a new thread using the specified parameters

Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.