List of usage examples for io.vertx.core.http HttpConnection goAway
@Fluent default HttpConnection goAway(long errorCode)
From source file:examples.HTTP2Examples.java
License:Open Source License
public void example26(HttpConnection connection) { connection.goAway(0); }
From source file:examples.HTTP2Examples.java
License:Open Source License
public void example28(HttpConnection connection) { connection.goAway(0); connection.shutdownHandler(v -> { // All streams are closed, close the connection connection.close();//www . j av a 2 s . c o m }); }