to top
Android APIs
public class

Wire

extends Object
java.lang.Object
   ↳ org.apache.http.impl.conn.Wire

Class Overview

Logs data to the wire LOG.

Summary

Public Constructors
Wire(Log log)
Public Methods
boolean enabled()
void input( String s)
void input(int b)
void input(byte[] b)
void input( InputStream instream)
void input(byte[] b, int off, int len)
void output( String s)
void output(byte[] b)
void output( InputStream outstream)
void output(byte[] b, int off, int len)
void output(int b)
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Wire (Log log)

Added in API level 1

Public Methods

public boolean enabled ()

Added in API level 1

public void input (String s)

Added in API level 1

Throws
IOException

public void input (int b)

Added in API level 1

Throws
IOException

public void input (byte[] b)

Added in API level 1

Throws
IOException

public void input (InputStream instream)

Added in API level 1

Throws
IOException

public void input (byte[] b, int off, int len)

Added in API level 1

Throws
IOException

public void output (String s)

Added in API level 1

Throws
IOException

public void output (byte[] b)

Added in API level 1

Throws
IOException

public void output (InputStream outstream)

Added in API level 1

Throws
IOException

public void output (byte[] b, int off, int len)

Added in API level 1

Throws
IOException

public void output (int b)

Added in API level 1

Throws
IOException
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.