Overview
-
module Protocol-
module HTTP2-
class ClientRepresents an HTTP/2 client connection.
-
class ConnectionThis is the core connection class that handles HTTP/2 protocol semantics including
-
module ContinuedModule for frames that can be continued with CONTINUATION frames.
-
class ContinuationFrameThe CONTINUATION frame is used to continue a sequence of header block fragments. Any number of CONTINUATION frames can be sent, as long as the preceding frame is on the same stream and is a HEADERS, PUSH_PROMISE, or CONTINUATION frame without the END_HEADERS flag set.
-
class DataFrameDATA frames convey arbitrary, variable-length sequences of octets associated with a stream. One or more DATA frames are used, for instance, to carry HTTP request or response payloads.
-
class ErrorStatus codes as defined by https://tools.ietf.org/html/rfc7540#section-7.
-
class HandshakeErrorRaised if connection header is missing or invalid indicating that
-
class ProtocolErrorRaised by stream or connection handlers, results in GOAWAY frame
-
class StreamErrorRepresents an error specific to stream operations.
-
class StreamClosedRepresents an error for operations on closed streams.
-
class GoawayErrorRepresents a GOAWAY-related protocol error.
-
class FrameSizeErrorWhen the frame payload does not match expectations.
-
class HeaderErrorRepresents a header processing error.
-
class FlowControlErrorRaised on invalid flow control frame or command.
-
module FlowControlledProvides flow control functionality for HTTP/2 connections and streams.
-
class FrameRepresents the base class for all HTTP/2 frames.
-
class FramerHandles frame serialization and deserialization for HTTP/2 connections.
-
class GoawayFrameThe GOAWAY frame is used to initiate shutdown of a connection or to signal serious error conditions. GOAWAY allows an endpoint to gracefully stop accepting new streams while still finishing processing of previously established streams. This enables administrative actions, like server maintenance.
-
class HeadersFrameThe HEADERS frame is used to open a stream, and additionally carries a header block fragment. HEADERS frames can be sent on a stream in the "idle", "reserved (local)", "open", or "half-closed (remote)" state.
-
module PaddedCertain frames can have padding:
-
module AcknowledgementProvides acknowledgement functionality for frames that support it.
-
class PingFrameThe PING frame is a mechanism for measuring a minimal round-trip time from the sender, as well as determining whether an idle connection is still functional. PING frames can be sent from any endpoint.
-
class PriorityUpdateFrameThe PRIORITY_UPDATE frame is used by clients to signal the initial priority of a response, or to reprioritize a response or push stream. It carries the stream ID of the response and the priority in ASCII text, using the same representation as the Priority header field value.
-
class PushPromiseFrameThe PUSH_PROMISE frame is used to notify the peer endpoint in advance of streams the sender intends to initiate. The PUSH_PROMISE frame includes the unsigned 31-bit identifier of the stream the endpoint plans to create along with a set of headers that provide additional context for the stream.
-
class ResetStreamFrameThe RST_STREAM frame allows for immediate termination of a stream. RST_STREAM is sent to request cancellation of a stream or to indicate that an error condition has occurred.
-
class ServerRepresents an HTTP/2 server connection.
-
class SettingsHTTP/2 connection settings container and management.
-
class PendingSettingsManages pending settings changes that haven't been acknowledged yet.
-
class SettingsFrameThe SETTINGS frame conveys configuration parameters that affect how endpoints communicate, such as preferences and constraints on peer behavior. The SETTINGS frame is also used to acknowledge the receipt of those parameters. Individually, a SETTINGS parameter can also be referred to as a "setting".
-
class StreamA single HTTP/2 connection can multiplex multiple streams in parallel:
-
class WindowFlow control window for managing HTTP/2 data flow.
-
class LocalWindowThis is a window which efficiently maintains a desired capacity.
-
class WindowUpdateFrameThe WINDOW_UPDATE frame is used to implement flow control.
-
-
-
Provider