Package org.apache.http.impl.conn
Class Wire
- java.lang.Object
-
- org.apache.http.impl.conn.Wire
-
-
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(InputStream inStream)voidinput(String s)voidoutput(byte[] b)voidoutput(byte[] b, int off, int len)voidoutput(int b)voidoutput(InputStream outStream)voidoutput(String s)
-
-
-
Method Detail
-
enabled
public boolean enabled()
-
output
public void output(InputStream outStream) throws IOException
- Throws:
IOException
-
input
public void input(InputStream inStream) throws IOException
- Throws:
IOException
-
output
public void output(byte[] b, int off, int len) throws IOException- Throws:
IOException
-
input
public void input(byte[] b, int off, int len) throws IOException- Throws:
IOException
-
output
public void output(byte[] b) throws IOException- Throws:
IOException
-
input
public void input(byte[] b) throws IOException- Throws:
IOException
-
output
public void output(int b) throws IOException- Throws:
IOException
-
input
public void input(int b) throws IOException- Throws:
IOException
-
output
public void output(String s) throws IOException
- Throws:
IOException
-
input
public void input(String s) throws IOException
- Throws:
IOException
-
-