Uses of Class
io.vertx.core.http.Http2Settings
-
Packages that use Http2Settings Package Description io.vertx.core.http -
-
Uses of Http2Settings in io.vertx.core.http
Methods in io.vertx.core.http that return Http2Settings Modifier and Type Method Description Http2SettingsHttpClientOptions. getInitialSettings()Http2SettingsHttpServerOptions. getInitialSettings()Http2SettingsHttpConnection. remoteSettings()Http2SettingsHttp2Settings. set(int id, long value)Set a settingvaluefor a given settingid.Http2SettingsHttp2Settings. setExtraSettings(Map<Integer,Long> settings)Set the extra setting used for extending HTTP/2Http2SettingsHttp2Settings. setHeaderTableSize(long headerTableSize)Set SETTINGS_HEADER_TABLE_SIZE HTTP/2 setting.Http2SettingsHttp2Settings. setInitialWindowSize(int initialWindowSize)Set the SETTINGS_INITIAL_WINDOW_SIZE HTTP/2 settingHttp2SettingsHttp2Settings. setMaxConcurrentStreams(long maxConcurrentStreams)Set the SETTINGS_MAX_CONCURRENT_STREAMS HTTP/2 settingHttp2SettingsHttp2Settings. setMaxFrameSize(int maxFrameSize)Set the SETTINGS_MAX_FRAME_SIZE HTTP/2 settingHttp2SettingsHttp2Settings. setMaxHeaderListSize(long maxHeaderListSize)Set the SETTINGS_MAX_HEADER_LIST_SIZE HTTP/2 settingHttp2SettingsHttp2Settings. setPushEnabled(boolean pushEnabled)Set the SETTINGS_ENABLE_PUSH HTTP/2 settingHttp2SettingsHttpConnection. settings()Methods in io.vertx.core.http with parameters of type Http2Settings Modifier and Type Method Description HttpClientOptionsHttpClientOptions. setInitialSettings(Http2Settings settings)Set the HTTP/2 connection settings immediately sent by to the server when the client connects.HttpServerOptionsHttpServerOptions. setInitialSettings(Http2Settings settings)Set the HTTP/2 connection settings immediatly sent by the server when a client connects.Future<Void>HttpConnection. updateSettings(Http2Settings settings)Send to the remote endpoint an update of this endpoint settingsMethod parameters in io.vertx.core.http with type arguments of type Http2Settings Modifier and Type Method Description HttpConnectionHttpConnection. remoteSettingsHandler(Handler<Http2Settings> handler)Set an handler that is called when remote endpointHttp2Settingsare updated.Constructors in io.vertx.core.http with parameters of type Http2Settings Constructor Description Http2Settings(Http2Settings other)Copy constructor
-