Package | Description |
---|---|
io.vertx.rxjava.core | |
io.vertx.rxjava.core.http |
Modifier and Type | Method and Description |
---|---|
HttpServer |
Vertx.createHttpServer()
Create an HTTP/HTTPS server using default options
|
HttpServer |
Vertx.createHttpServer(HttpServerOptions options)
Create an HTTP/HTTPS server using the specified options
|
Modifier and Type | Method and Description |
---|---|
HttpServer |
HttpServer.connectionHandler(Handler<HttpConnection> handler)
Set a connection handler for the server.
|
HttpServer |
HttpServer.listen()
Tell the server to start listening.
|
HttpServer |
HttpServer.listen(Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
HttpServer |
HttpServer.listen(int port)
Like
listen() but the server will listen on host "0.0.0.0" and port specified here ignoring
any value in the HttpServerOptions that was used when creating the server. |
HttpServer |
HttpServer.listen(int port,
Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
HttpServer |
HttpServer.listen(int port,
String host)
Tell the server to start listening.
|
HttpServer |
HttpServer.listen(int port,
String host,
Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually
listening (or has failed). |
static HttpServer |
HttpServer.newInstance(HttpServer arg) |
HttpServer |
HttpServer.requestHandler(Handler<HttpServerRequest> handler)
Set the request handler for the server to
requestHandler . |
HttpServer |
HttpServer.websocketHandler(Handler<ServerWebSocket> handler)
Set the websocket handler for the server to
wsHandler . |
Modifier and Type | Method and Description |
---|---|
Observable<HttpServer> |
HttpServer.listenObservable()
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
Observable<HttpServer> |
HttpServer.listenObservable(int port)
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
Observable<HttpServer> |
HttpServer.listenObservable(int port,
String host)
Like
listen() but supplying a handler that will be called when the server is actually
listening (or has failed). |
Modifier and Type | Method and Description |
---|---|
HttpServer |
HttpServer.listen(Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
HttpServer |
HttpServer.listen(int port,
Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually listening (or has failed). |
HttpServer |
HttpServer.listen(int port,
String host,
Handler<AsyncResult<HttpServer>> listenHandler)
Like
listen() but supplying a handler that will be called when the server is actually
listening (or has failed). |
Copyright © 2016. All rights reserved.