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();
}