Struct actix_net::server::Server[][src]

pub struct Server { /* fields omitted */ }

Server

Methods

impl Server
[src]

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 event 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.

This example is not tested
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

impl Default for Server
[src]

Returns the "default value" for a type. Read more

impl Actor for Server
[src]

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

impl Handler<Signal> for Server
[src]

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

impl Handler<PauseServer> for Server
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

impl Handler<ResumeServer> for Server
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

impl Handler<StopServer> for Server
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations

impl Send for Server

impl !Sync for Server