01: package vicazh.hyperpool.stream.net.http;
02:
03: /**
04: * The agents selector
05: *
06: * @author Victor Zhigunov
07: * @version 0.4.0
08: */
09: public class AgentsSelector extends ControlListSelector implements
10: AgentsSelectorMBean {
11:
12: public Connection getConnection() {
13: return new AgentsConnection(this);
14: }
15: }
|