Class

org.http4s.blaze.http.http2

ImmutableHttp2Settings

Related Doc: package http2

Permalink

case class ImmutableHttp2Settings(headerTableSize: Int, initialWindowSize: Int, pushEnabled: Boolean, maxConcurrentStreams: Int, maxFrameSize: Int, maxHeaderListSize: Int) extends Http2Settings with Product with Serializable

Immutable representation of Http2Settings for configuring clients and servers

Source
Http2Settings.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, Http2Settings, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImmutableHttp2Settings
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Http2Settings
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ImmutableHttp2Settings(headerTableSize: Int, initialWindowSize: Int, pushEnabled: Boolean, maxConcurrentStreams: Int, maxFrameSize: Int, maxHeaderListSize: Int)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  8. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  9. val headerTableSize: Int

    Permalink

    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.

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  10. val initialWindowSize: Int

    Permalink

    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.

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. val maxConcurrentStreams: Int

    Permalink

    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.

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  13. val maxFrameSize: Int

    Permalink

    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.

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  14. val maxHeaderListSize: Int

    Permalink

    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.

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. val pushEnabled: Boolean

    Permalink

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

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

    Definition Classes
    ImmutableHttp2SettingsHttp2Settings
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. final def toSeq: Seq[Setting]

    Permalink
    Definition Classes
    Http2Settings
  21. def toString(): String

    Permalink
    Definition Classes
    Http2Settings → AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Http2Settings

Inherited from AnyRef

Inherited from Any

Ungrouped