Package com.sun.corba.se.impl.orbutil.threadpool

Examples of com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl


    private static final ORBUtilSystemException wrapper =
        ORBUtilSystemException.get(CORBALogDomains.RPC_TRANSPORT);

    public ThreadPoolManagerImpl() {
        threadGroup = getThreadGroup();
        threadPool = new ThreadPoolImpl(threadGroup,
            ORBConstants.THREADPOOL_DEFAULT_NAME);
    }
View Full Code Here


    private static final ORBUtilSystemException wrapper =
        ORBUtilSystemException.get(CORBALogDomains.RPC_TRANSPORT);

    public ThreadPoolManagerImpl() {
        threadGroup = getThreadGroup();
        threadPool = new ThreadPoolImpl(threadGroup,
            ORBConstants.THREADPOOL_DEFAULT_NAME);
    }
View Full Code Here

        // 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 ) ;
    }
View Full Code Here

TOP

Related Classes of com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.