Skip to main content

ServerBuilder

Struct ServerBuilder 

Source
pub struct ServerBuilder<Cfg = NoConfig> { /* private fields */ }
Expand description

Builder for a network server.

Register listeners and their service factories, configure the worker pool, and call run to start the server.

Implementations§

Source§

impl<Cfg> ServerBuilder<Cfg>
where Cfg: ServerAppConfig,

Source

pub fn new(cfg: Cfg) -> ServerBuilder<Cfg>

Creates a server builder with the specified application configuration.

Source

pub fn name<T: AsRef<str>>(self, name: T) -> Self

Sets the server name.

The name is also used for worker threads.

Source

pub fn workers(self, num: usize) -> Self

Sets the number of worker threads to start.

By default, the server uses the number of available logical CPUs.

Source

pub fn backlog(self, num: i32) -> Self

Set the maximum number of pending connections.

This refers to the number of clients that can be waiting to be served. Exceeding this number results in the client getting an error when attempting to connect. It should only affect servers under significant load.

Generally set in the 64-2048 range. Default value is 2048.

This method should be called before bind() method call.

Source

pub fn maxconn(self, num: usize) -> Self

Sets the maximum per-worker number of concurrent connections.

All socket listeners will stop accepting connections when this limit is reached for each worker.

The default is 25,600 connections per worker.

Source

pub fn stop_runtime(self) -> Self

Stops the current ntex runtime when the server is dropped.

By default “stop runtime” is disabled.

Source

pub fn stop_on_panic(self) -> Self

Stops the server when one of the workers panics.

By default, “stop on panic” is disabled.

Source

pub fn disable_signals(self) -> Self

Disable signal handling.

By default, signal handling is enabled.

Source

pub fn enable_affinity(self) -> Self

Enables CPU affinity for worker threads.

By default, affinity is disabled.

Source

pub fn graceful_shutdown(self) -> Self

Graceful shutdown.

Gracefully shuts down on SIGSEGV or SIGQUIT and app panics. Graceful shutdown is always enabled for SIGTERM. By default, it is disabled for SIGSEGV and SIGQUIT and panics.

Source

pub fn shutdown_timeout<T: Into<Millis>>(self, timeout: T) -> Self

Timeout for graceful worker shutdown.

After receiving a stop signal, workers have this much time to finish serving requests. Workers that are still alive after the timeout are forcefully dropped.

By default, the shutdown timeout is set to 30 seconds.

Source

pub fn status_handler<F>(self, handler: F) -> Self
where F: FnMut(ServerStatus) + Send + 'static,

Sets the server status handler.

The server calls this handler on every internal status update.

Source

pub async fn configure<F>(self, f: F) -> Result<Self>
where F: AsyncFnOnce(ServiceConfig<Cfg>) -> Result<()>,

Executes asynchronous configuration as part of the server building process.

This function is useful for moving parts of configuration to a different module or even library.

Source

pub fn bind<F, S, I>( self, name: impl AsRef<str>, addr: impl ToSocketAddrs, cfg: impl Into<SharedCfg>, factory: F, ) -> Result<Self>
where F: AsyncFn(&Cfg::State) -> I + Send + Clone + 'static, S: Service<Cfg::State, Io> + 'static, I: IntoService<S, Cfg::State, Io> + 'static,

Binds TCP listeners and registers a service factory.

Source

pub fn bind_uds<F, I, S>( self, name: impl AsRef<str>, addr: impl AsRef<Path>, cfg: impl Into<SharedCfg>, factory: F, ) -> Result<Self>
where F: AsyncFn(&Cfg::State) -> I + Send + Clone + 'static, I: IntoService<S, Cfg::State, Io> + 'static, S: Service<Cfg::State, Io> + 'static,

Binds a Unix domain socket and registers a service factory.

Source

pub fn listen_uds<F, I, S>( self, name: impl AsRef<str>, lst: UnixListener, cfg: impl Into<SharedCfg>, factory: F, ) -> Result<Self>
where F: AsyncFn(&Cfg::State) -> I + Send + Clone + 'static, I: IntoService<S, Cfg::State, Io> + 'static, S: Service<Cfg::State, Io> + 'static,

Registers a service factory for an existing Unix domain listener.

This is useful for socket activation, including listeners acquired through systemd.

Source

pub fn listen<F, S, I>( self, name: impl AsRef<str>, lst: TcpListener, cfg: impl Into<SharedCfg>, factory: F, ) -> Result<Self>
where F: AsyncFn(&Cfg::State) -> I + Send + Clone + 'static, S: Service<Cfg::State, Io> + 'static, I: IntoService<S, Cfg::State, Io> + 'static,

Registers a service factory for an existing TCP listener.

Source

pub fn run(self) -> Server<Connection>

Starts processing incoming connections and returns a server controller.

Trait Implementations§

Source§

impl<Cfg> Debug for ServerBuilder<Cfg>

Source§

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

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

impl Default for ServerBuilder

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<Cfg = NoConfig> !RefUnwindSafe for ServerBuilder<Cfg>

§

impl<Cfg = NoConfig> !Sync for ServerBuilder<Cfg>

§

impl<Cfg = NoConfig> !UnwindSafe for ServerBuilder<Cfg>

§

impl<Cfg> Freeze for ServerBuilder<Cfg>
where Arc<Cfg>: Freeze, Vec<Box<dyn FactoryService<Cfg>>>: Freeze,

§

impl<Cfg> Send for ServerBuilder<Cfg>
where Arc<Cfg>: Send, Vec<Box<dyn FactoryService<Cfg>>>: Send,

§

impl<Cfg> Unpin for ServerBuilder<Cfg>
where Arc<Cfg>: Unpin, Vec<Box<dyn FactoryService<Cfg>>>: Unpin,

§

impl<Cfg> UnsafeUnpin for ServerBuilder<Cfg>
where Arc<Cfg>: UnsafeUnpin, Vec<Box<dyn FactoryService<Cfg>>>: UnsafeUnpin,

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.