Example usage for org.apache.http.nio.testserver Wire Wire

List of usage examples for org.apache.http.nio.testserver Wire Wire

Introduction

In this page you can find the example usage for org.apache.http.nio.testserver Wire Wire.

Prototype

public Wire(final Log log, final String id) 

Source Link

Usage

From source file:org.apache.http.nio.testserver.LoggingIOSession.java

public LoggingIOSession(final IOSession session, final String id, final Log log, final Log wirelog) {
    super();//w w w  . ja v  a 2s . c  o m
    this.session = session;
    this.channel = new LoggingByteChannel();
    this.id = id;
    this.log = log;
    this.wirelog = new Wire(wirelog, this.id);
}