Class DefaultHttpResponseWriter<T extends HttpResponse>
- java.lang.Object
-
- org.apache.hc.core5.http.impl.nio.AbstractMessageWriter<T>
-
- org.apache.hc.core5.http.impl.nio.DefaultHttpResponseWriter<T>
-
- All Implemented Interfaces:
NHttpMessageWriter<T>
public class DefaultHttpResponseWriter<T extends HttpResponse> extends AbstractMessageWriter<T>
DefaultNHttpMessageWriterimplementation forHttpResponses.- Since:
- 4.1
-
-
Constructor Summary
Constructors Constructor Description DefaultHttpResponseWriter()DefaultHttpResponseWriter(LineFormatter formatter)Creates an instance of DefaultHttpResponseWriter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidwriteHeadLine(T message, CharArrayBuffer lineBuf)Writes out the first line ofHttpMessage.-
Methods inherited from class org.apache.hc.core5.http.impl.nio.AbstractMessageWriter
getLineFormatter, reset, write
-
-
-
-
Constructor Detail
-
DefaultHttpResponseWriter
public DefaultHttpResponseWriter(LineFormatter formatter)
Creates an instance of DefaultHttpResponseWriter.- Parameters:
formatter- the line formatter IfnullBasicLineFormatter.INSTANCEwill be used.- Since:
- 4.3
-
DefaultHttpResponseWriter
public DefaultHttpResponseWriter()
- Since:
- 4.3
-
-
Method Detail
-
writeHeadLine
protected void writeHeadLine(T message, CharArrayBuffer lineBuf) throws java.io.IOException
Description copied from class:AbstractMessageWriterWrites out the first line ofHttpMessage.- Specified by:
writeHeadLinein classAbstractMessageWriter<T extends HttpResponse>- Parameters:
message- HTTP message.- Throws:
java.io.IOException
-
-