Example usage for org.apache.http.impl.conn Wire Wire

List of usage examples for org.apache.http.impl.conn Wire Wire

Introduction

In this page you can find the example usage for org.apache.http.impl.conn Wire Wire.

Prototype

public Wire(Log log) 

Source Link

Usage

From source file:org.apache.http.impl.conn.DefaultClientConnection.java

@Override
protected SessionInputBuffer createSessionInputBuffer(final Socket socket, final int buffersize,
        final HttpParams params) throws IOException {
    SessionInputBuffer inbuffer = super.createSessionInputBuffer(socket, buffersize > 0 ? buffersize : 8192,
            params);/* w  ww.j  a v a2  s.  c o  m*/
    if (wireLog.isDebugEnabled()) {
        inbuffer = new LoggingSessionInputBuffer(inbuffer, new Wire(wireLog),
                HttpProtocolParams.getHttpElementCharset(params));
    }
    return inbuffer;
}

From source file:org.apache.http.impl.conn.DefaultClientConnection.java

@Override
protected SessionOutputBuffer createSessionOutputBuffer(final Socket socket, final int buffersize,
        final HttpParams params) throws IOException {
    SessionOutputBuffer outbuffer = super.createSessionOutputBuffer(socket, buffersize > 0 ? buffersize : 8192,
            params);//from  w  w  w.j av a  2  s .  c om
    if (wireLog.isDebugEnabled()) {
        outbuffer = new LoggingSessionOutputBuffer(outbuffer, new Wire(wireLog),
                HttpProtocolParams.getHttpElementCharset(params));
    }
    return outbuffer;
}