Home | History | Annotate | Download | only in tsccm

Lines Matching defs:route

46  * A connection sub-pool for a specific route, used by {@link ConnPoolByRoute}.
59 /** The route this pool is for. */
60 protected final HttpRoute route;
80 * Creates a new route-specific pool.
82 * @param route the route for which to pool
85 public RouteSpecificPool(HttpRoute route, int maxEntries) {
86 this.route = route;
95 * Obtains the route for which this pool is specific.
97 * @return the route
100 return route;
142 * @return the number of entries for the route of this pool
190 ("No entry created for this pool. " + route);
194 ("No entry allocated from this pool. " + route);
210 if (!route.equals(entry.getPlannedRoute())) {
213 "\npool: " + route +