List of usage examples for org.apache.http.impl.nio.conn Wire Wire
public Wire(final Log log, final String id)
From source file:org.apache.http.impl.nio.conn.LoggingIOSession.java
public LoggingIOSession(final IOSession session, final String id, final Log log, final Log wirelog) { super();//from w w w . j av a2 s .c om this.session = session; this.channel = new LoggingByteChannel(); this.id = id; this.log = log; this.wirelog = new Wire(wirelog, this.id); }