1920212223242526272829
* @author eduard */ public class NIOJICPSPeer extends NIOJICPPeer { public ConnectionFactory getConnectionFactory() { return new ConnectionFactory() { public Connection createConnection(Socket s) { return new NIOJICPSConnection(); }
2021222324252627282930
* @author eduard */ public class NIOHTTPPeer extends NIOJICPPeer { public ConnectionFactory getConnectionFactory() { return new ConnectionFactory() { public Connection createConnection(Socket s) { return new NIOHTTPConnection(); }
2122232425262728293031
* @author eduard */ public class NIOJICPPeer extends JICPPeer { public ConnectionFactory getConnectionFactory() { return new ConnectionFactory() { public Connection createConnection(Socket s) { return new NIOJICPConnection(); }
1617181920212223242526
* */ public class NIOHTTPSPeer extends NIOHTTPPeer { public ConnectionFactory getConnectionFactory() { return new ConnectionFactory() { public Connection createConnection(Socket s) { return new NIOHTTPSConnection(); }
1718192021222324252627
*/ public class HTTPSPeer extends JICPSPeer { @Override public ConnectionFactory getConnectionFactory() { return new ConnectionFactory() { public Connection createConnection(Socket s) { return new HTTPServerConnection(s); }