org.apache.http.impl.pool
Class BasicPoolEntry
java.lang.Object
org.apache.http.pool.PoolEntry<org.apache.http.HttpHost,org.apache.http.HttpClientConnection>
org.apache.http.impl.pool.BasicPoolEntry
@ThreadSafe
public class BasicPoolEntry
- extends PoolEntry<org.apache.http.HttpHost,org.apache.http.HttpClientConnection>
A very basic PoolEntry implementation that represents an entry
in a pool of blocking HttpClientConnections identified by
an HttpHost instance.
- Since:
- 4.2
- See Also:
HttpHost
|
Constructor Summary |
BasicPoolEntry(java.lang.String id,
org.apache.http.HttpHost route,
org.apache.http.HttpClientConnection conn)
|
|
Method Summary |
void |
close()
Invalidates the pool entry and closes the pooled connection associated
with it. |
boolean |
isClosed()
Returns true if the pool entry has been invalidated. |
| Methods inherited from class org.apache.http.pool.PoolEntry |
getConnection, getCreated, getExpiry, getId, getRoute, getState, getUpdated, getValidUnit, isExpired, setState, toString, updateExpiry |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
BasicPoolEntry
public BasicPoolEntry(java.lang.String id,
org.apache.http.HttpHost route,
org.apache.http.HttpClientConnection conn)
close
public void close()
- Description copied from class:
PoolEntry
- Invalidates the pool entry and closes the pooled connection associated
with it.
- Specified by:
close in class PoolEntry<org.apache.http.HttpHost,org.apache.http.HttpClientConnection>
isClosed
public boolean isClosed()
- Description copied from class:
PoolEntry
- Returns
true if the pool entry has been invalidated.
- Specified by:
isClosed in class PoolEntry<org.apache.http.HttpHost,org.apache.http.HttpClientConnection>