/*
* Copyright (c) 2011-2020 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 io.vertx.core.spi.observability;
import io.vertx.core.MultiMap;
import io.vertx.core.http.HttpMethod;
import io.vertx.core.net.SocketAddress;
An HTTP request.
Author: Julien Viet
/**
* An HTTP request.
*
* @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
*/
public interface HttpRequest {
Returns: the stream id
/**
* @return the stream id
*/
int id();
Returns: the request URI
/**
* @return the request URI
*/
String uri();
Returns: the request absolute URI
/**
* @return the request absolute URI
*/
String absoluteURI();
Returns: the request method
/**
* @return the request method
*/
HttpMethod method();
Returns: the request headers
/**
* @return the request headers
*/
MultiMap headers();
Returns: the request remote peer address
/**
* @return the request remote peer address
*/
SocketAddress remoteAddress();
}