Package org.apache.coyote.http11
Interface HttpOutputBuffer
- 
- All Superinterfaces:
- OutputBuffer
 - All Known Subinterfaces:
- OutputFilter
 - All Known Implementing Classes:
- ChunkedOutputFilter,- GzipOutputFilter,- Http11OutputBuffer,- Http11OutputBuffer.SocketOutputBuffer,- Http2OutputBuffer,- IdentityOutputFilter,- VoidOutputFilter
 
 public interface HttpOutputBuffer extends OutputBuffer 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidend()Finish writing the current response.voidflush()Flushes any unwritten data to the client.- 
Methods inherited from interface org.apache.coyote.OutputBufferdoWrite, getBytesWritten
 
- 
 
- 
- 
- 
Method Detail- 
endvoid end() throws java.io.IOException Finish writing the current response. It is acceptable to write extra bytes usingOutputBuffer.doWrite(java.nio.ByteBuffer)during the execution of this method.- Throws:
- java.io.IOException- If an I/O error occurs while writing to the client
 
 - 
flushvoid flush() throws java.io.IOExceptionFlushes any unwritten data to the client.- Throws:
- java.io.IOException- If an I/O error occurs while flushing
 
 
- 
 
-