class CreateHttpServer extends Verticle { def start(): Future[Unit] = { /* example-code-start */ vertx.createHttpServer(HttpServerOptions( host = "localhost", port = 8080 )).requestHandler(req => { req.response().setChunked(true).end("

Hello from vert.x!

"); }).listen(); /* example-code-end */ } }