Package org.apache.coyote.http11.filters
Class IdentityOutputFilter
java.lang.Object
org.apache.coyote.http11.filters.IdentityOutputFilter
- All Implemented Interfaces:
- HttpOutputBuffer,- OutputFilter,- OutputBuffer
Identity output filter.
- Author:
- Remy Maucherat
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected HttpOutputBufferNext buffer in the pipeline.protected longContent length.protected longRemaining bytes.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintdoWrite(ByteBuffer chunk) Write the given data to the response.voidend()Finish writing the current response.voidflush()Flushes any unwritten data to the client.longBytes written to the underlying socket.voidrecycle()Make the filter ready to process the next request.voidsetBuffer(HttpOutputBuffer buffer) Set the next buffer in the filter pipeline.voidsetResponse(Response response) Some filters need additional parameters from the response.
- 
Field Details- 
contentLengthprotected long contentLengthContent length.
- 
remainingprotected long remainingRemaining bytes.
- 
bufferNext buffer in the pipeline.
 
- 
- 
Constructor Details- 
IdentityOutputFilterpublic IdentityOutputFilter()
 
- 
- 
Method Details- 
doWriteDescription copied from interface:OutputBufferWrite the given data to the response. The caller owns the chunks.- Specified by:
- doWritein interface- OutputBuffer
- Parameters:
- chunk- data to write
- Returns:
- The number of bytes written which may be less than available in the input chunk
- Throws:
- IOException- an underlying I/O error occurred
 
- 
getBytesWrittenpublic long getBytesWritten()Description copied from interface:OutputBufferBytes written to the underlying socket. This includes the effects of chunking, compression, etc.- Specified by:
- getBytesWrittenin interface- OutputBuffer
- Returns:
- Bytes written for the current request
 
- 
setResponseDescription copied from interface:OutputFilterSome filters need additional parameters from the response. All the necessary reading can occur in that method, as this method is called after the response header processing is complete.- Specified by:
- setResponsein interface- OutputFilter
- Parameters:
- response- The response to associate with this OutputFilter
 
- 
setBufferDescription copied from interface:OutputFilterSet the next buffer in the filter pipeline.- Specified by:
- setBufferin interface- OutputFilter
- Parameters:
- buffer- The next buffer instance
 
- 
flushDescription copied from interface:HttpOutputBufferFlushes any unwritten data to the client.- Specified by:
- flushin interface- HttpOutputBuffer
- Throws:
- IOException- If an I/O error occurs while flushing
 
- 
endDescription copied from interface:HttpOutputBufferFinish writing the current response. It is acceptable to write extra bytes usingOutputBuffer.doWrite(java.nio.ByteBuffer)during the execution of this method.- Specified by:
- endin interface- HttpOutputBuffer
- Throws:
- IOException- If an I/O error occurs while writing to the client
 
- 
recyclepublic void recycle()Description copied from interface:OutputFilterMake the filter ready to process the next request.- Specified by:
- recyclein interface- OutputFilter
 
 
-