本文整理汇总了Java中com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl类的典型用法代码示例。如果您正苦于以下问题:Java ThreadPoolImpl类的具体用法?Java ThreadPoolImpl怎么用?Java ThreadPoolImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ThreadPoolImpl类属于com.sun.corba.se.impl.orbutil.threadpool包,在下文中一共展示了ThreadPoolImpl类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addWork
import com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl; //导入依赖的package包/类
public void addWork(Work work) {
synchronized (this) {
workItemsAdded++;
work.setEnqueueTime(System.currentTimeMillis());
theWorkQueue.addLast(work);
((ThreadPoolImpl)workerThreadPool).notifyForAvailableWork(this);
}
}
示例2: ThreadPoolManagerImpl
import com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl; //导入依赖的package包/类
public ThreadPoolManagerImpl( ThreadGroup tg )
{
// Use unbounded threadpool in J2SE ORB
// ThreadPoolManager from s1as appserver code base can be set in the
// ORB. ThreadPools in the appserver are bounded. In that situation
// the ThreadPool in this ThreadPoolManager will have its threads
// die after the idle timeout.
// XXX Should there be cleanup when ORB.shutdown is called if the
// ORB owns the ThreadPool?
threadPool = new ThreadPoolImpl( tg,
ORBConstants.THREADPOOL_DEFAULT_NAME ) ;
}
示例3: addWork
import com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl; //导入依赖的package包/类
public synchronized void addWork(Work work) {
workItemsAdded++;
work.setEnqueueTime(System.currentTimeMillis());
theWorkQueue.addLast(work);
((ThreadPoolImpl)workerThreadPool).notifyForAvailableWork(this);
}
示例4: ThreadPoolManagerImpl
import com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl; //导入依赖的package包/类
public ThreadPoolManagerImpl() {
threadGroup = getThreadGroup();
threadPool = new ThreadPoolImpl(threadGroup,
ORBConstants.THREADPOOL_DEFAULT_NAME);
}