FileDocCategorySizeDatePackage
ThreadControllerWrapper.javaAPI DocJava SE 5 API2929Fri Aug 26 14:56:04 BST 2005com.sun.org.apache.xml.internal.utils

ThreadControllerWrapper

public class ThreadControllerWrapper extends Object
A utility class that wraps the ThreadController, which is used by IncrementalSAXSource for the incremental building of DTM.

Fields Summary
static ThreadController
m_tpool
The ThreadController pool
Constructors Summary
Methods Summary
public static java.lang.ThreadrunThread(java.lang.Runnable runnable, int priority)

    return m_tpool.run(runnable, priority);
  
public static voidsetThreadController(com.sun.org.apache.xml.internal.utils.ThreadControllerWrapper$ThreadController tpool)
Change the ThreadController that will be used to manage the transform threads.

param
tp A ThreadController object


                      
      
  
    m_tpool = tpool;
  
public static voidwaitThread(java.lang.Thread worker, java.lang.Runnable task)

    m_tpool.waitThread(worker, task);