Example usage for io.vertx.core.http HttpClientRequest reset

List of usage examples for io.vertx.core.http HttpClientRequest reset

Introduction

In this page you can find the example usage for io.vertx.core.http HttpClientRequest reset.

Prototype

default boolean reset() 

Source Link

Document

Reset this stream with the error code 0 .

Usage

From source file:examples.HTTP2Examples.java

License:Open Source License

public void example10(HttpClientRequest request) {

    request.reset();

}