01: package vicazh.hyperpool.stream.net.http; 02: 03: /** 04: * The protocol selector 05: * 06: * @author Victor Zhigunov 07: * @version 0.4.0 08: */ 09: public class ProtocolSelector extends ListSelector { 10: 11: public Connection getConnection() { 12: return new ProtocolConnection(this); 13: } 14: }