List of usage examples for io.vertx.core.http HttpConnection remoteSettingsHandler
@Fluent HttpConnection remoteSettingsHandler(Handler<Http2Settings> handler);
From source file:examples.HTTP2Examples.java
License:Open Source License
public void example22(HttpConnection connection) { connection.remoteSettingsHandler(settings -> { System.out.println("Received new settings"); });/*from w ww . j a va2s .c om*/ }