当前位置: 首页>>代码示例>>Java>>正文


Java ThreadPoolImpl类代码示例

本文整理汇总了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);
    }
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:9,代码来源:WorkQueueImpl.java

示例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 ) ;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:13,代码来源:ThreadPoolManagerImpl.java

示例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);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:WorkQueueImpl.java

示例4: ThreadPoolManagerImpl

import com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl; //导入依赖的package包/类
public ThreadPoolManagerImpl() {
    threadGroup = getThreadGroup();
    threadPool = new ThreadPoolImpl(threadGroup,
        ORBConstants.THREADPOOL_DEFAULT_NAME);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:ThreadPoolManagerImpl.java


注:本文中的com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。