List of usage examples for io.vertx.core.http HttpConnection goAwayHandler
@Fluent HttpConnection goAwayHandler(@Nullable Handler<GoAway> handler);
From source file:examples.HTTP2Examples.java
License:Open Source License
public void example27(HttpConnection connection) { connection.goAwayHandler(goAway -> { System.out.println("Received a go away frame"); });//from w w w. jav a2s . c o m }