Http2Settings

org.http4s.blaze.http.http2.Http2Settings
See theHttp2Settings companion object
sealed abstract class Http2Settings

A bundle of HTTP2 settings

These represent the HTTP2 settings for either the client or server.

Attributes

See also

https://tools.ietf.org/html/rfc7540#section-6.5.2, where the doc strings were obtained.

Companion
object
Source
Http2Settings.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

Allows the sender to inform the remote endpoint of the maximum size of the header compression table used to decode header blocks, in octets.

Allows the sender to inform the remote endpoint of the maximum size of the header compression table used to decode header blocks, in octets. The encoder can select any size equal to or less than this value by using signaling specific to the header compression format inside a header block.

Attributes

Source
Http2Settings.scala

Indicates the sender's initial window size (in octets) for stream-level flow control.

Indicates the sender's initial window size (in octets) for stream-level flow control.

Attributes

Source
Http2Settings.scala

Indicates the maximum number of concurrent streams that the sender will allow.

Indicates the maximum number of concurrent streams that the sender will allow. This limit is directional: it applies to the number of streams that the sender permits the receiver to create. Initially, there is no limit to this value. It is recommended that this value be no smaller than 100, so as to not unnecessarily limit parallelism.

A value of 0 for SETTINGS_MAX_CONCURRENT_STREAMS SHOULD NOT be treated as special by endpoints. A zero value does prevent the creation of new streams; however, this can also happen for any limit that is exhausted with active streams. Servers SHOULD only set a zero value for short durations; if a server does not wish to accept requests, closing the connection is more appropriate.

Attributes

Source
Http2Settings.scala

Indicates the size of the largest frame payload that the sender is willing to receive, in octets.

Indicates the size of the largest frame payload that the sender is willing to receive, in octets.

Attributes

Source
Http2Settings.scala

This advisory setting informs a peer of the maximum size of header list that the sender is prepared to accept, in octets.

This advisory setting informs a peer of the maximum size of header list that the sender is prepared to accept, in octets. The value is based on the uncompressed size of header fields, including the length of the name and value in octets plus an overhead of 32 octets for each header field.

Attributes

Source
Http2Settings.scala

This setting can be used to disable server push (Section 8.2).

This setting can be used to disable server push (Section 8.2).

Attributes

Source
Http2Settings.scala

Concrete methods

final def toSeq: Seq[Setting]

Attributes

Source
Http2Settings.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
Http2Settings.scala