All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.http.HttpServer Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.http;

import com.arangodb.shaded.vertx.codegen.annotations.CacheReturn;
import com.arangodb.shaded.vertx.codegen.annotations.GenIgnore;
import com.arangodb.shaded.vertx.core.AsyncResult;
import com.arangodb.shaded.vertx.core.Future;
import com.arangodb.shaded.vertx.core.Handler;
import com.arangodb.shaded.vertx.codegen.annotations.Fluent;
import com.arangodb.shaded.vertx.codegen.annotations.VertxGen;
import com.arangodb.shaded.vertx.core.metrics.Measured;
import com.arangodb.shaded.vertx.core.net.SSLOptions;
import com.arangodb.shaded.vertx.core.net.SocketAddress;
import com.arangodb.shaded.vertx.core.net.impl.SocketAddressImpl;
import com.arangodb.shaded.vertx.core.streams.ReadStream;

/**
 * An HTTP and WebSockets server.
 * 

* You receive HTTP requests by providing a {@link #requestHandler}. As requests arrive on the server the handler * will be called with the requests. *

* You receive WebSockets by providing a {@link #webSocketHandler}. As WebSocket connections arrive on the server, the * WebSocket is passed to the handler. * * @author Tim Fox */ @VertxGen public interface HttpServer extends Measured { /** * Return the request stream for the server. As HTTP requests are received by the server, * instances of {@link HttpServerRequest} will be created and passed to the stream {@link com.arangodb.shaded.vertx.core.streams.ReadStream#handler(com.arangodb.shaded.vertx.core.Handler)}. * * @return the request stream * @deprecated instead use {@link #requestHandler(Handler)} */ @Deprecated @CacheReturn ReadStream requestStream(); /** * Set the request handler for the server to {@code requestHandler}. As HTTP requests are received by the server, * instances of {@link HttpServerRequest} will be created and passed to this handler. * * @return a reference to this, so the API can be used fluently */ @Fluent HttpServer requestHandler(Handler handler); /** * @return the request handler */ @GenIgnore Handler requestHandler(); /** * Set a {@code handler} for handling invalid requests. When an invalid request is received by the server * this handler will be called with the request. The handler can send any HTTP response, when the response * ends, the server shall close the connection. {@link HttpServerRequest#decoderResult()} can be used * to obtain the Netty decoder result and the failure cause reported by the decoder. * *

Currently this handler is only used for HTTP/1.x requests. * *

When no specific handler is set, the {@link HttpServerRequest#DEFAULT_INVALID_REQUEST_HANDLER} is used. * * @return a reference to this, so the API can be used fluently */ HttpServer invalidRequestHandler(Handler handler); /** * Set a connection handler for the server. *
* The handler will always be called on the event-loop thread. * * @return a reference to this, so the API can be used fluently */ @Fluent HttpServer connectionHandler(Handler handler); /** * Set an exception handler called for socket errors happening before the HTTP connection * is established, e.g during the TLS handshake. * * @param handler the handler to set * @return a reference to this, so the API can be used fluently */ @Fluent HttpServer exceptionHandler(Handler handler); /** * Return the WebSocket stream for the server. If a WebSocket connect handshake is successful a * new {@link ServerWebSocket} instance will be created and passed to the stream {@link com.arangodb.shaded.vertx.core.streams.ReadStream#handler(com.arangodb.shaded.vertx.core.Handler)}. * * @return the WebSocket stream * @deprecated instead use {@link #webSocketHandler(Handler)} */ @Deprecated @CacheReturn ReadStream webSocketStream(); /** * Set the WebSocket handler for the server to {@code wsHandler}. If a WebSocket connect handshake is successful a * new {@link ServerWebSocket} instance will be created and passed to the handler. * * @return a reference to this, so the API can be used fluently */ @Fluent HttpServer webSocketHandler(Handler handler); /** * @return the WebSocket handler */ @GenIgnore Handler webSocketHandler(); /** * Update the server SSL options. * * Update only happens if the SSL options is valid. * * @param options the new SSL options * @return a future signaling the update success */ Future updateSSLOptions(SSLOptions options); /** * Like {@link #updateSSLOptions(SSLOptions)} but supplying a handler that will be called when the update * happened (or has failed). * * @param options the new SSL options * @param handler the update handler */ default void updateSSLOptions(SSLOptions options, Handler> handler) { Future fut = updateSSLOptions(options); if (handler != null) { fut.onComplete(handler); } } /** * Tell the server to start listening. The server will listen on the port and host specified in the * {@link com.arangodb.shaded.vertx.core.http.HttpServerOptions} that was used when creating the server. *

* The listen happens asynchronously and the server may not be listening until some time after the call has returned. * * @return a future completed with the listen operation result */ Future listen(); /** * Tell the server to start listening. The server will listen on the port and host specified here, * ignoring any value set in the {@link com.arangodb.shaded.vertx.core.http.HttpServerOptions} that was used when creating the server. *

* The listen happens asynchronously and the server may not be listening until some time after the call has returned. * * @param port the port to listen on * @param host the host to listen on * * @return a future completed with the listen operation result */ default Future listen(int port, String host) { return listen(new SocketAddressImpl(port, host)); } /** * Like {@link #listen(int, String)} but supplying a handler that will be called when the server is actually * listening (or has failed). * * @param port the port to listen on * @param host the host to listen on * @param listenHandler the listen handler */ @Fluent default HttpServer listen(int port, String host, Handler> listenHandler) { Future fut = listen(port, host); if (listenHandler != null) { fut.onComplete(listenHandler); } return this; } /** * Tell the server to start listening on the given address supplying * a handler that will be called when the server is actually * listening (or has failed). * * @param address the address to listen on * @param listenHandler the listen handler */ @Fluent default HttpServer listen(SocketAddress address, Handler> listenHandler) { Future fut = listen(address); if (listenHandler != null) { fut.onComplete(listenHandler); } return this; } /** * Like {@link #listen(SocketAddress, Handler)} but returns a {@code Future} of the asynchronous result */ Future listen(SocketAddress address); /** * Like {@link #listen(int, String)} but the server will listen on host "0.0.0.0" and port specified here ignoring * any value in the {@link com.arangodb.shaded.vertx.core.http.HttpServerOptions} that was used when creating the server. * * @param port the port to listen on * * @return a future completed with the listen operation result */ default Future listen(int port) { return listen(port, "0.0.0.0"); } /** * Like {@link #listen(int)} but supplying a handler that will be called when the server is actually listening (or has failed). * * @param port the port to listen on * @param listenHandler the listen handler */ @Fluent default HttpServer listen(int port, Handler> listenHandler) { Future fut = listen(port); if (listenHandler != null) { fut.onComplete(listenHandler); } return this; } /** * Like {@link #listen} but supplying a handler that will be called when the server is actually listening (or has failed). * * @param listenHandler the listen handler */ @Fluent default HttpServer listen(Handler> listenHandler) { Future fut = listen(); if (listenHandler != null) { fut.onComplete(listenHandler); } return this; } /** * Close the server. Any open HTTP connections will be closed. *

* The close happens asynchronously and the server may not be closed until some time after the call has returned. * * @return a future completed with the result */ Future close(); /** * Like {@link #close} but supplying a handler that will be called when the server is actually closed (or has failed). * * @param completionHandler the handler */ void close(Handler> completionHandler); /** * The actual port the server is listening on. This is useful if you bound the server specifying 0 as port number * signifying an ephemeral port * * @return the actual port the server is listening on. */ int actualPort(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy