Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public abstract class

AbstractSessionInputBuffer

extends Object
implements SessionInputBuffer
java.lang.Object
   ↳ org.apache.http.impl.io.AbstractSessionInputBuffer
Known Direct Subclasses

Class Overview

Abstract base class for session input buffers that stream data from a InputStream .

Summary

Public Constructors
AbstractSessionInputBuffer ()
Public Methods
HttpTransportMetrics getMetrics ()
int read (byte[] b)
int read ()
int read (byte[] b, int off, int len)
int readLine ( CharArrayBuffer charbuffer)
String readLine ()
Protected Methods
int fillBuffer ()
boolean hasBufferedData ()
void init ( InputStream instream, int buffersize, HttpParams params)
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.io.SessionInputBuffer

Public Constructors

public AbstractSessionInputBuffer ()

Added in API level 1

Public Methods

public HttpTransportMetrics getMetrics ()

Added in API level 1

public int read (byte[] b)

Added in API level 1

public int read ()

Added in API level 1

public int read (byte[] b, int off, int len)

Added in API level 1

public int readLine ( CharArrayBuffer charbuffer)

Added in API level 1

public String readLine ()

Added in API level 1

Protected Methods

protected int fillBuffer ()

Added in API level 1

protected boolean hasBufferedData ()

Added in API level 1

protected void init ( InputStream instream, int buffersize, HttpParams params)

Added in API level 1