FileDocCategorySizeDatePackage
SSLPipeline.javaAPI DocGlassfish v2 API2935Fri May 04 22:37:10 BST 2007com.sun.enterprise.web.connector.grizzly.ssl

SSLPipeline

public class SSLPipeline extends com.sun.enterprise.web.connector.grizzly.LinkedListPipeline
This Pipeline supports SSL over NIO by creating SSLWorkerThread
author
Jean-Francois Arcand

Fields Summary
Constructors Summary
Methods Summary
protected voidincreaseWorkerThread(int increment, boolean startThread)
Create new SSLWorkerThread

        
        SSLWorkerThread workerThread;
        int currentCount = threadCount;
        int increaseCount = threadCount + increment; 
        for (int i=currentCount; i < increaseCount; i++){
            workerThread = new SSLWorkerThread(this, 
                    name + "SSLWorkerThread-"  + port + "-" + i);
            workerThread.setPriority(priority);
            
            if (startThread)
                workerThread.start();
            
            workerThreads[i] = workerThread;
            threadCount++; 
        }