Uses of Class
org.apache.http.impl.conn.tsccm.BasicPoolEntry
| Package | Description |
|---|---|
| org.apache.http.impl.conn.tsccm |
The implementation of a thread-safe client connection manager.
|
-
Uses of BasicPoolEntry in org.apache.http.impl.conn.tsccm
Fields in org.apache.http.impl.conn.tsccm with type parameters of type BasicPoolEntry Modifier and Type Field Description protected Queue<BasicPoolEntry>ConnPoolByRoute. freeConnectionsThe list of free connectionsprotected LinkedList<BasicPoolEntry>RouteSpecificPool. freeEntriesThe list of free entries.Methods in org.apache.http.impl.conn.tsccm that return BasicPoolEntry Modifier and Type Method Description BasicPoolEntryRouteSpecificPool. allocEntry(Object state)Obtains a free entry from this pool, if one is available.protected BasicPoolEntryConnPoolByRoute. createEntry(RouteSpecificPool rospl, ClientConnectionOperator op)Creates a new pool entry.BasicPoolEntryAbstractConnPool. getEntry(HttpRoute route, Object state, long timeout, TimeUnit tunit)Obtains a pool entry with a connection within the given timeout.protected BasicPoolEntryConnPoolByRoute. getEntryBlocking(HttpRoute route, Object state, long timeout, TimeUnit tunit, WaitingThreadAborter aborter)Obtains a pool entry with a connection within the given timeout.protected BasicPoolEntryConnPoolByRoute. getFreeEntry(RouteSpecificPool rospl, Object state)If available, get a free pool entry for a route.BasicPoolEntryPoolEntryRequest. getPoolEntry(long timeout, TimeUnit tunit)Obtains a pool entry with a connection within the given timeout.Methods in org.apache.http.impl.conn.tsccm that return types with arguments of type BasicPoolEntry Modifier and Type Method Description protected Queue<BasicPoolEntry>ConnPoolByRoute. createFreeConnQueue()Creates the queue forConnPoolByRoute.freeConnections.Methods in org.apache.http.impl.conn.tsccm with parameters of type BasicPoolEntry Modifier and Type Method Description voidRouteSpecificPool. createdEntry(BasicPoolEntry entry)Indicates creation of an entry for this pool.protected voidConnPoolByRoute. deleteEntry(BasicPoolEntry entry)Deletes a given pool entry.booleanRouteSpecificPool. deleteEntry(BasicPoolEntry entry)Deletes an entry from this pool.abstract voidAbstractConnPool. freeEntry(BasicPoolEntry entry, boolean reusable, long validDuration, TimeUnit timeUnit)Returns an entry into the pool.voidConnPoolByRoute. freeEntry(BasicPoolEntry entry, boolean reusable, long validDuration, TimeUnit timeUnit)voidRouteSpecificPool. freeEntry(BasicPoolEntry entry)Returns an allocated entry to this pool.Constructors in org.apache.http.impl.conn.tsccm with parameters of type BasicPoolEntry Constructor Description BasicPoolEntryRef(BasicPoolEntry entry, ReferenceQueue<Object> queue)Creates a new reference to a pool entry.