Package com.sun.enterprise.web.connector.grizzly

Examples of com.sun.enterprise.web.connector.grizzly.WorkerThread


     */
    @Override
    public void recycle(){
        if (byteBuffer != null){
            try{
                WorkerThread workerThread = (WorkerThread)Thread.currentThread();   
                workerThread.setByteBuffer(byteBuffer);
            } catch (ClassCastException ex){
                // Avoid failling if the Grizzly extension doesn't support
                // the WorkerThread interface.              
                Logger logger = SSLSelectorThread.logger();
                if (logger.isLoggable(Level.FINEST))
View Full Code Here

TOP

Related Classes of com.sun.enterprise.web.connector.grizzly.WorkerThread

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.