Struct actix_net::server::Server

source ·
pub struct Server { /* private fields */ }
Expand description

Server

Implementations§

Create new Server instance

Set number of workers to start.

By default server uses number of available logical cpu as threads count.

Sets the maximum per-worker number of concurrent connections.

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

By default max connections is set to a 25k per worker.

Stop actix system.

SystemExit message stops currently running system.

Disable signal handling

Timeout for graceful workers shutdown in seconds.

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

By default shutdown timeout sets to 30 seconds.

Run external configuration as part of the server building process

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

Add new service to server

Add new service to server

Add new service to server

Spawn new thread and start listening for incoming connections.

This method spawns new thread and starts new actix system. Other than that it is similar to start() method. This method blocks.

This methods panics if no socket addresses get bound.

use actix_web::*;

fn main() {
    Server::new().
        .service(
           HttpServer::new(|| App::new().resource("/", |r| r.h(|_| HttpResponse::Ok())))
               .bind("127.0.0.1:0")
               .expect("Can not bind to 127.0.0.1:0"))
        .run();
}

Starts Server Actor and returns its address

Trait Implementations§

Actor execution context type
Method is called when actor get polled first time.
Method is called after an actor is in Actor::Stopping state. There could be several reasons for stopping. Context::stop get called by the actor itself. All addresses to current actor get dropped and no more evented objects left in the context. Read more
Method is called after an actor is stopped, it can be used to perform any needed cleanup work or spawning more actors. This is final state, after this call actor get dropped. Read more
Start new asynchronous actor, returns address of newly created actor. Read more
Start new asynchronous actor, returns address of newly created actor.
Use create method, if you need Context object during actor initialization. Read more
Returns the “default value” for a type. Read more
The type of value that this handle will return
Method is called for every message received by this Actor
The type of value that this handle will return
Method is called for every message received by this Actor

Signals support Handle SIGINT, SIGTERM, SIGQUIT signals and stop actix system message to System actor.

The type of value that this handle will return
Method is called for every message received by this Actor
The type of value that this handle will return
Method is called for every message received by this Actor

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.

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.