to top
Android APIs
public class

BasicEofSensorWatcher

extends Object
implements EofSensorWatcher
java.lang.Object
   ↳ org.apache.http.conn.BasicEofSensorWatcher

Class Overview

Basic implementation of EofSensorWatcher. The underlying connection is released on close or EOF.

Summary

Fields
protected boolean attemptReuse Whether to keep the connection alive.
protected ManagedClientConnection managedConn The connection to auto-release.
Public Constructors
BasicEofSensorWatcher(ManagedClientConnection conn, boolean reuse)
Creates a new watcher for auto-releasing a connection.
Public Methods
boolean eofDetected(InputStream wrapped)
Indicates that EOF is detected.
boolean streamAbort(InputStream wrapped)
Indicates that the stream is aborted.
boolean streamClosed(InputStream wrapped)
Indicates that the stream is closed.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.conn.EofSensorWatcher

Fields

protected boolean attemptReuse

Added in API level 1

Whether to keep the connection alive.

protected ManagedClientConnection managedConn

Added in API level 1

The connection to auto-release.

Public Constructors

public BasicEofSensorWatcher (ManagedClientConnection conn, boolean reuse)

Added in API level 1

Creates a new watcher for auto-releasing a connection.

Parameters
conn the connection to auto-release
reuse whether the connection should be re-used

Public Methods

public boolean eofDetected (InputStream wrapped)

Added in API level 1

Indicates that EOF is detected.

Parameters
wrapped the underlying stream which has reached EOF
Returns
  • true if wrapped should be closed, false if it should be left alone
Throws
IOException

public boolean streamAbort (InputStream wrapped)

Added in API level 1

Indicates that the stream is aborted. This method will be called only if EOF was not detected before aborting. Otherwise, eofDetected is called.

This method will also be invoked when an input operation causes an IOException to be thrown to make sure the input stream gets shut down.

Parameters
wrapped the underlying stream which has not reached EOF
Returns
  • true if wrapped should be closed, false if it should be left alone
Throws
IOException

public boolean streamClosed (InputStream wrapped)

Added in API level 1

Indicates that the stream is closed. This method will be called only if EOF was not detected before closing. Otherwise, eofDetected is called.

Parameters
wrapped the underlying stream which has not reached EOF
Returns
  • true if wrapped should be closed, false if it should be left alone
Throws
IOException