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 boolean
enabled()
void
input(byte[] b)
void
input(byte[] b, int off, int len)
void
input(int b)
void
input(InputStream inStream)
void
input(String s)
void
output(byte[] b)
void
output(byte[] b, int off, int len)
void
output(int b)
void
output(InputStream outStream)
void
output(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
-
-