Struct reth_network_types::session::config::SessionsConfig

source ·
pub struct SessionsConfig {
    pub session_command_buffer: usize,
    pub session_event_buffer: usize,
    pub limits: SessionLimits,
    pub initial_internal_request_timeout: Duration,
    pub protocol_breach_request_timeout: Duration,
    pub pending_session_timeout: Duration,
}
Expand description

Configuration options for peer session management.

Fields§

§session_command_buffer: usize

Size of the session command buffer (per session task).

§session_event_buffer: usize

Size of the session event channel buffer.

§limits: SessionLimits

Limits to enforce.

By default, no limits will be enforced.

§initial_internal_request_timeout: Duration

The maximum initial time we wait for a response from the peer before we timeout a request internally.

§protocol_breach_request_timeout: Duration

The amount of time we continue to wait for a response from the peer, even if we timed it out internally (initial_internal_request_timeout). Timeouts are not penalized but the session directly, however if a peer fails to respond at all (within PROTOCOL_BREACH_REQUEST_TIMEOUT) this is considered a protocol violation and results in a dropped session.

§pending_session_timeout: Duration

The timeout after which a pending session attempt is considered failed.

Implementations§

source§

impl SessionsConfig

source

pub const fn with_session_event_buffer(self, n: usize) -> Self

Sets the buffer size for the bounded communication channel between the manager and its sessions for events emitted by the sessions.

It is expected, that the background session task will stall if they outpace the manager. The buffer size provides backpressure on the network I/O.

source

pub fn with_upscaled_event_buffer(self, num_peers: usize) -> Self

Helper function to set the buffer size for the bounded communication channel between the manager and its sessions for events emitted by the sessions.

This scales the buffer size based on the configured number of peers, where the base line is the default buffer size.

If the number of peers is greater than the default, the buffer size will be scaled up to match the default buffer size / max peers ratio.

Note: This is capped at 10 times the default buffer size.

Trait Implementations§

source§

impl Clone for SessionsConfig

source§

fn clone(&self) -> SessionsConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SessionsConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SessionsConfig

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for SessionsConfig

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for SessionsConfig

source§

fn eq(&self, other: &SessionsConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SessionsConfig

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for SessionsConfig

source§

impl StructuralPartialEq for SessionsConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 96 bytes