Methods Summary |
---|
public com.sun.enterprise.web.connector.grizzly.Handler | getHandler()Return the Handler used by this algorithm.
return handler;
|
public boolean | parse(java.nio.ByteBuffer byteBuffer)Do not parse the bytes and automatically flip the ByteBuffer
byteBuffer.flip();
return true;
|
public java.nio.ByteBuffer | preParse(java.nio.ByteBuffer byteBuffer)Do nothing, as the ByteBufferInputStream will take care of reading the
missing bytes.
return byteBuffer;
|
public void | recycle()Recycle this object.
socketChannel = null;
if ( handler != null){
handler.attachChannel(null);
}
|