org.apache.http.impl.io
Class AbstractMessageWriter
java.lang.Object
org.apache.http.impl.io.AbstractMessageWriter
- All Implemented Interfaces:
- HttpMessageWriter
- Direct Known Subclasses:
- HttpRequestWriter, HttpResponseWriter
public abstract class AbstractMessageWriter
- extends java.lang.Object
- implements HttpMessageWriter
Abstract base class for HTTP message writers that serialize output to
an instance of SessionOutputBuffer
.
- Since:
- 4.0
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
sessionBuffer
protected final SessionOutputBuffer sessionBuffer
lineBuf
protected final CharArrayBuffer lineBuf
lineFormatter
protected final LineFormatter lineFormatter
AbstractMessageWriter
public AbstractMessageWriter(SessionOutputBuffer buffer,
LineFormatter formatter,
HttpParams params)
- Creates an instance of AbstractMessageWriter.
- Parameters:
buffer
- the session output buffer.formatter
- the line formatter.params
- HTTP parameters.
writeHeadLine
protected abstract void writeHeadLine(HttpMessage message)
throws java.io.IOException
- Subclasses must override this method to write out the first header line
based on the
HttpMessage
passed as a parameter.
- Parameters:
message
- the message whose first line is to be written out.
- Throws:
java.io.IOException
- in case of an I/O error.
write
public void write(HttpMessage message)
throws java.io.IOException,
HttpException
- Description copied from interface:
HttpMessageWriter
- Serializes an instance of
HttpMessage
to the underlying data
sink.
- Specified by:
write
in interface HttpMessageWriter
- Throws:
java.io.IOException
- in case of an I/O error
HttpException
- in case of HTTP protocol violation
Copyright © 2005-2011 The Apache Software Foundation. All Rights Reserved.