Methods Summary |
---|
public void | flush()
this.out.flush();
|
public org.apache.http.io.HttpTransportMetrics | getMetrics()
return this.out.getMetrics();
|
public void | write(byte[] b, int off, int len)
this.out.write(b, off, len);
if (this.wire.enabled()) {
this.wire.output(b, off, len);
}
|
public void | write(int b)
this.out.write(b);
if (this.wire.enabled()) {
this.wire.output(b);
}
|
public void | write(byte[] b)
this.out.write(b);
if (this.wire.enabled()) {
this.wire.output(b);
}
|
public void | writeLine(org.apache.http.util.CharArrayBuffer buffer)
this.out.writeLine(buffer);
if (this.wire.enabled()) {
String s = new String(buffer.buffer(), 0, buffer.length());
this.wire.output(s + "[EOL]");
}
|
public void | writeLine(java.lang.String s)
this.out.writeLine(s);
if (this.wire.enabled()) {
this.wire.output(s + "[EOL]");
}
|