com.sun.corba.se.spi.orbutil.threadpool.ThreadPool Java Examples

The following examples show how to use com.sun.corba.se.spi.orbutil.threadpool.ThreadPool. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WorkQueueImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #2
Source File: ThreadPoolManagerImpl.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #3
Source File: WorkQueueImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #4
Source File: WorkQueueImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #5
Source File: ThreadPoolManagerImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #6
Source File: WorkQueueImpl.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #7
Source File: WorkQueueImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool, String name) {
    this.workerThreadPool = workerThreadPool;
    this.name = name;
    initializeMonitoring();
}
 
Example #8
Source File: WorkQueueImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #9
Source File: WorkQueueImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #10
Source File: ThreadPoolManagerImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #11
Source File: WorkQueueImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #12
Source File: WorkQueueImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool, String name) {
    this.workerThreadPool = workerThreadPool;
    this.name = name;
    initializeMonitoring();
}
 
Example #13
Source File: WorkQueueImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #14
Source File: WorkQueueImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #15
Source File: ThreadPoolManagerImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #16
Source File: WorkQueueImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #17
Source File: WorkQueueImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool, String name) {
    this.workerThreadPool = workerThreadPool;
    this.name = name;
    initializeMonitoring();
}
 
Example #18
Source File: WorkQueueImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #19
Source File: WorkQueueImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #20
Source File: ThreadPoolManagerImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #21
Source File: WorkQueueImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #22
Source File: WorkQueueImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool, String name) {
    this.workerThreadPool = workerThreadPool;
    this.name = name;
    initializeMonitoring();
}
 
Example #23
Source File: WorkQueueImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #24
Source File: WorkQueueImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #25
Source File: ThreadPoolManagerImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}
 
Example #26
Source File: WorkQueueImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool) {
    this(workerThreadPool, ORBConstants.WORKQUEUE_DEFAULT_NAME);
}
 
Example #27
Source File: WorkQueueImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public WorkQueueImpl(ThreadPool workerThreadPool, String name) {
    this.workerThreadPool = workerThreadPool;
    this.name = name;
    initializeMonitoring();
}
 
Example #28
Source File: WorkQueueImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public void setThreadPool(ThreadPool workerThreadPool) {
        this.workerThreadPool = workerThreadPool;
}
 
Example #29
Source File: WorkQueueImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public ThreadPool getThreadPool() {
        return workerThreadPool;
}
 
Example #30
Source File: ThreadPoolManagerImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
* Returns the first instance of ThreadPool in the ThreadPoolManager
*/
public ThreadPool getDefaultThreadPool() {
    return threadPool;
}