public BasicPoolEntry(ClientConnectionOperator op, HttpRoute route, ReferenceQueue queue)Creates a new pool entry.
super(op, route);
if (route == null) {
throw new IllegalArgumentException("HTTP route may not be null");
}
this.reference = new BasicPoolEntryRef(this, queue);
|