Package org.apache.http.impl.conn
Class Wire
- java.lang.Object
-
- org.apache.http.impl.conn.Wire
-
@Contract(threading=IMMUTABLE) public class Wire extends java.lang.ObjectLogs data to the wire LOG. TODO: make package private. Should not be part of the public API.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanenabled()voidinput(byte[] b)voidinput(byte[] b, int off, int len)voidinput(int b)voidinput(java.io.InputStream inStream)voidinput(java.lang.String s)voidoutput(byte[] b)voidoutput(byte[] b, int off, int len)voidoutput(int b)voidoutput(java.io.InputStream outStream)voidoutput(java.lang.String s)private voidwire(java.lang.String header, java.io.InputStream inStream)
-
-
-
Method Detail
-
wire
private void wire(java.lang.String header, java.io.InputStream inStream) throws java.io.IOException- Throws:
java.io.IOException
-
enabled
public boolean enabled()
-
output
public void output(java.io.InputStream outStream) throws java.io.IOException- Throws:
java.io.IOException
-
input
public void input(java.io.InputStream inStream) throws java.io.IOException- Throws:
java.io.IOException
-
output
public void output(byte[] b, int off, int len) throws java.io.IOException- Throws:
java.io.IOException
-
input
public void input(byte[] b, int off, int len) throws java.io.IOException- Throws:
java.io.IOException
-
output
public void output(byte[] b) throws java.io.IOException- Throws:
java.io.IOException
-
input
public void input(byte[] b) throws java.io.IOException- Throws:
java.io.IOException
-
output
public void output(int b) throws java.io.IOException- Throws:
java.io.IOException
-
input
public void input(int b) throws java.io.IOException- Throws:
java.io.IOException
-
output
public void output(java.lang.String s) throws java.io.IOException- Throws:
java.io.IOException
-
input
public void input(java.lang.String s) throws java.io.IOException- Throws:
java.io.IOException
-
-