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

SSLOutputBuffer

public class SSLOutputBuffer extends com.sun.enterprise.web.connector.grizzly.SocketChannelOutputBuffer
Buffer the bytes until the ByteChunk is full or the request is completed, and then delegate the SSL encryption to class SSLOutputBuffer
author
Jean-Francois Arcand

Fields Summary
Constructors Summary
public SSLOutputBuffer(org.apache.coyote.Response response, int headerBufferSize, boolean useSocketBuffer)
Alternate constructor.

        super(response,headerBufferSize,useSocketBuffer);     
    
Methods Summary
public voidflushChannel(java.nio.ByteBuffer bb)
Flush the buffer by looping until the ByteBuffer is empty using SSLOutputBuffer

param
bb the ByteBuffer to write.

        SSLOutputWriter.flushChannel(socketChannel, bb);