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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
end()
Finish writing the current response.void
flush()
Flushes any unwritten data to the client.-
Methods inherited from interface org.apache.coyote.OutputBuffer
doWrite, getBytesWritten
-
-
-
-
Method Detail
-
end
void 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
-
flush
void flush() throws java.io.IOException
Flushes any unwritten data to the client.- Throws:
java.io.IOException
- If an I/O error occurs while flushing
-
-