Package org.simpleframework.transport.reactor

Examples of org.simpleframework.transport.reactor.DirectReactor


    * @param server this is the server that pipelines are handed to
    * @param agent this is used to create a trace to monitor events
    */
   public SocketListener(SocketAddress address, SSLContext context, Server server, Agent agent) throws IOException {
      this.acceptor = new SocketAcceptor(address, context, server, agent);
      this.reactor = new DirectReactor();
      this.process();
   }
View Full Code Here


    * @param context this is the SSL context used for secure HTTPS
    * @param processor this is where pipelines are handed to
    */
   public Listener(SocketAddress address, SSLContext context, Server processor) throws IOException {
      this.acceptor = new Acceptor(address, context, processor);
      this.reactor = new DirectReactor();
      this.process();
   }
View Full Code Here

TOP

Related Classes of org.simpleframework.transport.reactor.DirectReactor

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.