| java.lang.Object com.icesoft.faces.async.render.RenderThreadFactory
RenderThreadFactory | class RenderThreadFactory implements ThreadFactory(Code) | | The Rendering API uses it's own ThreadFactory so that we can set the name,
daemon status, and context class loader.
author: ICEsoft Technologies, Inc. |
newThread | public Thread newThread(Runnable runnable)(Code) | | Return a new Thread using the supplied Runnable. Each thread is named
using the PREFIX and a counter. The daemon status is set to true. We
also set the context class loader for the thread as some J2EE containers
don't do this properly.
Parameters: runnable - A new Thread to use in the RenderHubs thread pools. |
|
|