Package org.apache.http.impl.nio.pool
Class BasicNIOPoolEntry
- java.lang.Object
-
- org.apache.http.pool.PoolEntry<HttpHost,NHttpClientConnection>
-
- org.apache.http.impl.nio.pool.BasicNIOPoolEntry
-
@Contract(threading=SAFE) public class BasicNIOPoolEntry extends PoolEntry<HttpHost,NHttpClientConnection>
A basicPoolEntryimplementation that represents an entry in a pool of non-blockingNHttpClientConnections identified by anHttpHostinstance.- Since:
- 4.2
- See Also:
HttpHost
-
-
Field Summary
Fields Modifier and Type Field Description private intsocketTimeout
-
Constructor Summary
Constructors Constructor Description BasicNIOPoolEntry(java.lang.String id, HttpHost route, NHttpClientConnection conn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Invalidates the pool entry and closes the pooled connection associated with it.(package private) intgetSocketTimeout()booleanisClosed()Returnstrueif the pool entry has been invalidated.(package private) voidsetSocketTimeout(int socketTimeout)-
Methods inherited from class org.apache.http.pool.PoolEntry
getConnection, getCreated, getExpiry, getId, getRoute, getState, getUpdated, getValidityDeadline, getValidUnit, isExpired, setState, toString, updateExpiry
-
-
-
-
Constructor Detail
-
BasicNIOPoolEntry
public BasicNIOPoolEntry(java.lang.String id, HttpHost route, NHttpClientConnection conn)
-
-
Method Detail
-
close
public void close()
Description copied from class:PoolEntryInvalidates the pool entry and closes the pooled connection associated with it.- Specified by:
closein classPoolEntry<HttpHost,NHttpClientConnection>
-
isClosed
public boolean isClosed()
Description copied from class:PoolEntryReturnstrueif the pool entry has been invalidated.- Specified by:
isClosedin classPoolEntry<HttpHost,NHttpClientConnection>
-
getSocketTimeout
int getSocketTimeout()
-
setSocketTimeout
void setSocketTimeout(int socketTimeout)
-
-