Example usage for io.netty.handler.codec.http2 Http2CodecUtil SETTINGS_ENABLE_PUSH

List of usage examples for io.netty.handler.codec.http2 Http2CodecUtil SETTINGS_ENABLE_PUSH

Introduction

In this page you can find the example usage for io.netty.handler.codec.http2 Http2CodecUtil SETTINGS_ENABLE_PUSH.

Prototype

char SETTINGS_ENABLE_PUSH

To view the source code for io.netty.handler.codec.http2 Http2CodecUtil SETTINGS_ENABLE_PUSH.

Click Source Link

Usage

From source file:io.vertx.core.http.impl.Http2ServerConnection.java

License:Open Source License

protected void updateSettings(Http2Settings settingsUpdate, Handler<AsyncResult<Void>> completionHandler) {
    settingsUpdate.remove(Http2CodecUtil.SETTINGS_ENABLE_PUSH);
    super.updateSettings(settingsUpdate, completionHandler);
}