pub struct Connection<T, B: Buf> { /* private fields */ }
Expand description

Accepts inbound HTTP/2 streams on a connection.

A Connection is backed by an I/O resource (usually a TCP socket) and implements the HTTP/2 server logic for that connection. It is responsible for receiving inbound streams initiated by the client as well as driving the internal state forward.

Connection values are created by calling handshake. Once a Connection value is obtained, the caller must call poll or poll_close in order to drive the internal connection state forward.

See module level documentation for more details

Examples

let mut server = server::handshake(my_io).await.unwrap();
while let Some(request) = server.accept().await {
    tokio::spawn(async move {
        let (request, respond) = request.unwrap();
        // Process the request and send the response back to the client
        // using `respond`.
    });
}

Implementations

Accept the next incoming request on this connection.

Sets the target window size for the whole connection.

If size is greater than the current value, then a WINDOW_UPDATE frame will be immediately sent to the remote, increasing the connection level window by size - current_value.

If size is less than the current value, nothing will happen immediately. However, as window capacity is released by FlowControl instances, no WINDOW_UPDATE frames will be sent out until the number of “in flight” bytes drops below size.

The default value is 65,535.

See FlowControl documentation for more details.

Set a new INITIAL_WINDOW_SIZE setting (in octets) for stream-level flow control for received data.

The SETTINGS will be sent to the remote, and only applied once the remote acknowledges the change.

This can be used to increase or decrease the window size for existing streams.

Errors

Returns an error if a previous call is still pending acknowledgement from the remote endpoint.

Enables the extended CONNECT protocol.

Errors

Returns an error if a previous call is still pending acknowledgement from the remote endpoint.

Returns Ready when the underlying connection has closed.

If any new inbound streams are received during a call to poll_closed, they will be queued and returned on the next call to poll_accept.

This function will advance the internal connection state, driving progress on all the other handles (e.g. RecvStream and SendStream).

See here for more details.

Sets the connection to a GOAWAY state.

Does not terminate the connection. Must continue being polled to close connection.

After flushing the GOAWAY frame, the connection is closed. Any outstanding streams do not prevent the connection from closing. This should usually be reserved for shutting down when something bad external to h2 has happened, and open streams cannot be properly handled.

For graceful shutdowns, see graceful_shutdown.

Starts a graceful shutdown process.

Must continue being polled to close connection.

It’s possible to receive more requests after calling this method, since they might have been in-flight from the client already. After about 1 RTT, no new requests should be accepted. Once all active streams have completed, the connection is closed.

Takes a PingPong instance from the connection.

Note

This may only be called once. Calling multiple times will return None.

Returns the maximum number of concurrent streams that may be initiated by the server on this connection.

This limit is configured by the client peer by sending the SETTINGS_MAX_CONCURRENT_STREAMS parameter in a SETTINGS frame. This method returns the currently acknowledged value received from the remote.

Returns the maximum number of concurrent streams that may be initiated by the client on this connection.

This returns the value of the SETTINGS_MAX_CONCURRENT_STREAMS parameter sent in a SETTINGS frame that has been acknowledged by the remote peer. The value to be sent is configured by the Builder::max_concurrent_streams method before handshaking with the remote peer.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more