Package net.kuujo.vertigo.io.connection.impl

Examples of net.kuujo.vertigo.io.connection.impl.DefaultOutputConnection


  public DefaultOutputStream(Vertx vertx, OutputStreamContext context) {
    this.vertx = vertx;
    this.context = context;
    this.log = LoggerFactory.getLogger(String.format("%s-%s", DefaultOutputStream.class.getName(), context.port().toString()));
    for (OutputConnectionContext connection : context.connections()) {
      connections.add(new DefaultOutputConnection(vertx, connection));
    }
    this.selector = context.selector();
  }
View Full Code Here

TOP

Related Classes of net.kuujo.vertigo.io.connection.impl.DefaultOutputConnection

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.