Struct varlink::ListenConfig[][src]

pub struct ListenConfig {
    pub initial_worker_threads: usize,
    pub max_worker_threads: usize,
    pub idle_timeout: u64,
    pub stop_listening: Option<Arc<AtomicBool>>,
}

ListenConfig specifies the configuration parameters for varlink::listen

Examples:

let l = varlink::ListenConfig::default();
assert_eq!(l.initial_worker_threads, 1);
assert_eq!(l.max_worker_threads, 100);
assert_eq!(l.idle_timeout, 0);
assert!(l.stop_listening.is_none());

Fields

initial_worker_threads: usize

The amount of initial worker threads

max_worker_threads: usize

The maximum amount of worker threads

idle_timeout: u64

Time in seconds for the server to quit, when it is idle

stop_listening: Option<Arc<AtomicBool>>

An optional AtomicBool as a global flag, which lets the server stop accepting new connections, when set to true

Trait Implementations

impl Default for ListenConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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