Package com.google.apphosting.runtime
Class ThreadGroupPool.Builder
- java.lang.Object
-
- com.google.apphosting.runtime.ThreadGroupPool.Builder
-
- Enclosing class:
- ThreadGroupPool
public abstract static class ThreadGroupPool.Builder extends Object
Builder for ThreadGroupPool.
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract ThreadGroupPoolbuild()abstract ThreadGroupPool.BuildersetIgnoreDaemonThreads(boolean ignoreDaemonThreads)abstract ThreadGroupPool.BuildersetParentThreadGroup(ThreadGroup threadGroup)abstract ThreadGroupPool.BuildersetThreadGroupNamePrefix(String threadGroupNamePrefix)abstract ThreadGroupPool.BuildersetUncaughtExceptionHandler(Thread.UncaughtExceptionHandler uncaughtExceptionHandler)
-
-
-
Method Detail
-
setParentThreadGroup
public abstract ThreadGroupPool.Builder setParentThreadGroup(ThreadGroup threadGroup)
-
setThreadGroupNamePrefix
public abstract ThreadGroupPool.Builder setThreadGroupNamePrefix(String threadGroupNamePrefix)
-
setUncaughtExceptionHandler
public abstract ThreadGroupPool.Builder setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler uncaughtExceptionHandler)
-
setIgnoreDaemonThreads
public abstract ThreadGroupPool.Builder setIgnoreDaemonThreads(boolean ignoreDaemonThreads)
-
build
public abstract ThreadGroupPool build()
-
-