|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectphp.java.bridge.BaseThreadPool
php.java.bridge.ThreadPool
public class ThreadPool
A thread pool, accepts runnables and runs them in a thread
environment. Example:
ThreadPool pool = new
ThreadPool("MyThreadPool", 20);
pool.start(new
YourRunnable());
| Constructor Summary | |
|---|---|
ThreadPool(java.lang.String name,
int poolMaxSize)
Creates a new thread pool. |
|
| Method Summary |
|---|
| Methods inherited from class php.java.bridge.BaseThreadPool |
|---|
start |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ThreadPool(java.lang.String name,
int poolMaxSize)
name - - The name of the pool threads.poolMaxSize - - The max. number of threads, must be >= 1.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||