Package com.betfair.cougar.netutil.nio

Examples of com.betfair.cougar.netutil.nio.TlsNioConfig


  }

  public static void main(String[] args) throws Exception {

    System.err.println("runServer...");
    TlsNioConfig cfg = new TlsNioConfig();
        cfg.setNioLogger(new NioLogger("ALL"));

    cfg.setListenAddress("127.0.0.1");
    cfg.setListenPort(2222);

    cfg.setReuseAddress(true);
    cfg.setTcpNoDelay(true);

    ExecutionVenueNioServer server = new ExecutionVenueNioServer();
    server.setNioConfig(cfg);
    server.setServerHandler(new TestServerHandler());
    server.start();
View Full Code Here

TOP

Related Classes of com.betfair.cougar.netutil.nio.TlsNioConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.