Example usage for io.vertx.core.http HttpServerRequest connection

List of usage examples for io.vertx.core.http HttpServerRequest connection

Introduction

In this page you can find the example usage for io.vertx.core.http HttpServerRequest connection.

Prototype

@CacheReturn
HttpConnection connection();

Source Link

Usage

From source file:examples.HTTP2Examples.java

License:Open Source License

public void example16(HttpServerRequest request) {
    HttpConnection connection = request.connection();
}