Package org.apache.coyote.http11
Interface OutputFilter
- 
- All Superinterfaces:
- HttpOutputBuffer,- OutputBuffer
 - All Known Implementing Classes:
- ChunkedOutputFilter,- GzipOutputFilter,- IdentityOutputFilter,- VoidOutputFilter
 
 public interface OutputFilter extends HttpOutputBuffer Output filter.- Author:
- Remy Maucherat
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.- 
Methods inherited from interface org.apache.coyote.http11.HttpOutputBufferend, flush
 - 
Methods inherited from interface org.apache.coyote.OutputBufferdoWrite, doWrite, getBytesWritten
 
- 
 
- 
- 
- 
Method Detail- 
setResponsevoid setResponse(Response response) Some 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.- Parameters:
- response- The response to associate with this OutputFilter
 
 - 
recyclevoid recycle() Make the filter ready to process the next request.
 - 
setBuffervoid setBuffer(HttpOutputBuffer buffer) Set the next buffer in the filter pipeline.- Parameters:
- buffer- The next buffer instance
 
 
- 
 
-